コード例 #1
0
ファイル: AttendanceService.cs プロジェクト: JuRogn/OA
 public List<EmployeeAlreadyLeave> QueryEmployeeLeaveDayCount(int PageIndex, int PageSize, string Sort, string FilterString, List<object> parameters, string strOwenerID, out int PageCount, string Type)
 {
     using (EmployeeLevelDayCountBLL bll = new EmployeeLevelDayCountBLL())
     {
         return bll.QueryEmployeeLeaveDayCount(PageIndex, PageSize, Sort, FilterString, parameters, strOwenerID, out PageCount, Type);
     }
 }
コード例 #2
0
ファイル: AttendanceService.cs プロジェクト: JuRogn/OA
 public List<T_HR_EMPLOYEELEVELDAYCOUNT> QueryEmployeeLeaveDayCount(EmployeeVacationDayCountRequest request)
 {
     using (EmployeeLevelDayCountBLL bll = new EmployeeLevelDayCountBLL())
     {
         return bll.QueryEmployeeLeaveDayCount(request);
     }
 }