Ejemplo n.º 1
0
        public NoticeViewModel(INoticeService noticeService)
        {
            //NoticePaging = new NoticePagingViewModel();
            NoticeSearchCriteria = new NoticeSearchCriteriaViewModel();
            Notices          = new PagedResult <Notice>();
            ImportantNotices = new List <Notice>();

            _noticeService = noticeService;
        }
Ejemplo n.º 2
0
 public NoticeViewModel()
 {
     NoticeSearchCriteria = new NoticeSearchCriteriaViewModel();
     Notices          = new PagedResult <Notice>();
     ImportantNotices = new List <Notice>();
 }