Пример #1
0
        public List<T_HR_EMPLOYEEEVECTIONREPORT> EmployeeEvectionReportPaging(int pageIndex, int pageSize, string sort, string filterString, IList<object> paras, ref int pageCount)
        {
            using (EmployeeEvectionReportBLL bll = new EmployeeEvectionReportBLL())
            {
                var ents = bll.EmployeeEvectionReportPaging(pageIndex, pageSize, sort, filterString, paras, ref  pageCount);

                if (ents == null)
                {
                    return null;
                }

                return ents.ToList();
            }
        }