Exemplo n.º 1
0
        public static IList <PN_Notice> GetNoticeByStaff(int Staff, DateTime BeginDate, DateTime EndDate, int ApproveFlag)
        {
            PN_NoticeDAL dal = (PN_NoticeDAL)DataAccess.CreateObject(DALClassName);

            return(dal.GetNoticeByStaff(Staff, BeginDate, EndDate, ApproveFlag));
        }
Exemplo n.º 2
0
 public PN_NoticeBLL(int id)
     : base(DALClassName)
 {
     _dal = (PN_NoticeDAL)_DAL;
     FillModel(id);
 }
Exemplo n.º 3
0
 public PN_NoticeBLL(int id, bool bycache)
     : base(DALClassName)
 {
     _dal = (PN_NoticeDAL)_DAL;
     FillModel(id, bycache);
 }
Exemplo n.º 4
0
 ///<summary>
 ///PN_NoticeBLL
 ///</summary>
 public PN_NoticeBLL()
     : base(DALClassName)
 {
     _dal = (PN_NoticeDAL)_DAL;
     _m   = new PN_Notice();
 }