示例#1
0
 public List<T_HR_PERFORMANCEREWARDRECORD> GetPerformanceRewardRecordWithPaging(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount, DateTime startTime, DateTime endTime, string userID, string CheckState)
 {
     using (PerformanceRewardRecordBLL bll = new PerformanceRewardRecordBLL())
     {
         IQueryable<T_HR_PERFORMANCEREWARDRECORD> q = bll.QueryWithPaging(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, startTime, endTime, userID, CheckState);
         return q.Count() > 0 ? q.ToList() : null;
     }
 }
示例#2
0
 public T_HR_PERFORMANCEREWARDRECORD GetPerformaceRewardByID(string ID)
 {
     using (PerformanceRewardRecordBLL bll = new PerformanceRewardRecordBLL())
     {
         return bll.GetPerformanceRewardByID(ID);
     }
 }
示例#3
0
 public void PerformanceRewardRecordUpdate(T_HR_PERFORMANCEREWARDRECORD obj)
 {
     using (PerformanceRewardRecordBLL bll = new PerformanceRewardRecordBLL())
     {
         bll.PerformanceRewardRecordUpdate(obj);
     }
 }
示例#4
0
 public void PerformanceRewardRecordDelete(string[] IDs)
 {
     using (PerformanceRewardRecordBLL bll = new PerformanceRewardRecordBLL())
     {
         bll.PerformanceRewardRecordDelete(IDs);
     }
 }
示例#5
0
 public void PerformanceRewardRecordAdd(int orgtype, string orgid, string year, string month, DateTime startTime, DateTime endTime, string construes)
 {
     using (PerformanceRewardRecordBLL bll = new PerformanceRewardRecordBLL())
     {
         bll.PerformanceRewardRecordAdd(orgtype, orgid, year, month, startTime, endTime, construes);
     }
 }