public List<V_EMPLOYEEVIEW> GetContactsListPaging(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.GetContactsListPaging(pageIndex, pageSize, sort, filterString, paras, ref pageCount, sType, sValue, userID); return q; } }