﻿/**********************************************************************************************
* Blockdot Business Data
*
* NewsItemBO.js
***********************************************************************************************/





function NewsItem() {
    this.newsItemID;
    this.title;
    this.description;
    this.imageURL;
    this.datePublished;
    this.active;
}

function NewsItemList(intnewsItemID, strtitle, strdescription, dtedatePublished) {
    this.newsItemID = intnewsItemID;
    this.title = strtitle;
    this.description = strdescription;
    this.datePublished = dtedatePublished;
}

function NewsItemListByID(intnewsItemID, strtitle, strdescription, dtedatePublished, strnewsImages) {
    this.newsItemID = intnewsItemID;
    this.title = strtitle;
    this.description = strdescription;
    this.datePublished = dtedatePublished;
    this.newsImages = strnewsImages;
}
