コード例 #1
0
ファイル: PersonnelService.cs プロジェクト: JuRogn/OA
 public List<V_EMPLOYEEVIEW> GetLeaveEmployeeViewsPagingForMVC(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount, string sType, string sValue, string userID, ref int recordCount)
 {
     using (EmployeeBLL bll = new EmployeeBLL())
     {
         List<V_EMPLOYEEVIEW> q = bll.GetLeaveEmployeeViewsPagingForMVC(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, sType, sValue, userID, ref recordCount);
         return q;
     }
 }