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