Ejemplo n.º 1
0
 public CalculateOTHoursResponse CalculateOTHours(CalculateOTHoursRequest request)
 {
     using (EmployeeVacationBLL logic = new EmployeeVacationBLL())
     {
         return logic.CalculateOTHours(request);
     }
 }
Ejemplo n.º 2
0
 public List<T_HR_EMPLOYEELEAVERECORD> QueryEmployeeLeaveRecord(int PageIndex, int PageSize, string Sort, string FilterString,
                                                         List<object> paras, string strOwnerID, out int PageCount)
 {
     using (EmployeeVacationBLL logic = new EmployeeVacationBLL())
     {
         return logic.QueryEmployeeLeaveRecord(PageIndex, PageSize, Sort, FilterString, paras, strOwnerID, out PageCount);
     }
 }
Ejemplo n.º 3
0
 public int UpdateEmployeeVacation(EmployeeVacationUpdateEntity data)
 {
     using (EmployeeVacationBLL logic = new EmployeeVacationBLL())
     {
         return logic.UpdateEmployeeVacation(data);
     }
 }