Exemplo n.º 1
0
 public List<V_LeaveReferOvertime> QueryLeaveRecordForVacationList(VacationForAdjustRequest request)
 {
     using (LeaveReferOTBLL bll = new LeaveReferOTBLL())
     {
         return bll.QueryLeaveRecordForVacationList(request);
     }
 }
Exemplo n.º 2
0
 public int UpdateLeaveReferOvertime(List<T_HR_LEAVEREFEROT> lroList, string LeaveRecordID)
 {
     using (LeaveReferOTBLL logic = new LeaveReferOTBLL())
     {
         return logic.UpdateLeaveReferOvertime(lroList, LeaveRecordID);
     }
 }
Exemplo n.º 3
0
 public List<T_HR_LEAVEREFEROT> GetLeaveReferOTList(string LeaveRecordID)
 {
     using (LeaveReferOTBLL logic = new LeaveReferOTBLL())
     {
         return logic.GetLeaveReferOTList(LeaveRecordID);
     }
 }
Exemplo n.º 4
0
 public int AddLeaveReferOvertime(List<T_HR_LEAVEREFEROT> lroList)
 {
     using (LeaveReferOTBLL logic = new LeaveReferOTBLL())
     {
         return logic.AddLeaveReferOvertime(lroList);
     }
 }