Exemplo n.º 1
0
 public bool CustomGuerdonRecordDelete(string[] CustomGuerdonRecords)
 {
     using (CustomGuerdonRecordBLL bll = new CustomGuerdonRecordBLL())
     {
         int rslt = bll.CustomGuerdonRecordDelete(CustomGuerdonRecords);
         return (rslt > 0);
     }
 }
Exemplo n.º 2
0
 public T_HR_CUSTOMGUERDONRECORD GetCustomGuerdonRecordByID(string CustomGuerdonRecordID)
 {
     using (CustomGuerdonRecordBLL bll = new CustomGuerdonRecordBLL())
     {
         return bll.GetCustomGuerdonRecordByID(CustomGuerdonRecordID);
     }
 }
Exemplo n.º 3
0
 public void CustomGuerdonRecordUpdate(T_HR_CUSTOMGUERDONRECORD entity)
 {
     using (CustomGuerdonRecordBLL bll = new CustomGuerdonRecordBLL())
     {
         bll.CustomGuerdonRecordUpdate(entity);
     }
 }
Exemplo n.º 4
0
 public string CustomGuerdonRecordAccount(int objectType, string objectID, int year, int month, string construes)
 {
     using (CustomGuerdonRecordBLL bll = new CustomGuerdonRecordBLL())
     {
         return bll.CustomGuerdonRecordAccount(objectType, objectID, year, month, construes);
     }
 }
Exemplo n.º 5
0
 public List<V_RETURNFBI> CustomGuerdonRecord(int objectType, string objectID, int year, int month)
 {
     using (CustomGuerdonRecordBLL bll = new CustomGuerdonRecordBLL())
     {
         return bll.CustomGuerdonRecord(objectType, objectID, year, month, false);
     }
 }
Exemplo n.º 6
0
 public T_HR_CUSTOMGUERDONRECORD GetEmployeeCustomRecordOne(string employeeID, string year, string month)
 {
     using (CustomGuerdonRecordBLL bll = new CustomGuerdonRecordBLL())
     {
         return bll.GetEmployeeCustomRecordOne(employeeID, year, month);
     }
 }
Exemplo n.º 7
0
 public List<T_HR_CUSTOMGUERDONRECORD> GetCustomGuerdonRecordPaging(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount, DateTime starttime, DateTime endtime, string strCheckState, string userID)
 {
     using (CustomGuerdonRecordBLL bll = new CustomGuerdonRecordBLL())
     {
         IQueryable<T_HR_CUSTOMGUERDONRECORD> q = bll.QueryWithPaging(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, starttime, endtime, strCheckState, userID);
         return q.Count() > 0 ? q.ToList() : null;
     }
 }