Beispiel #1
0
        public NoticeCollection()
        {
            NoticeDA da = new NoticeDA();

            Notices = da.TableToEntity <NoticeBL>(da.GetNotices());
        }
Beispiel #2
0
        public static NoticeBL CreateNotice(string id)
        {
            NoticeDA da = new NoticeDA();

            return(da.TableToEntity <NoticeBL>(da.GetNotices(id)).First());
        }