Пример #1
0
 public void EmployeeEvectionReportAdd(T_HR_EMPLOYEEEVECTIONREPORT entity)
 {
     using (EmployeeEvectionReportBLL bll = new EmployeeEvectionReportBLL())
     {
         bll.EmployeeEvectionReportADD(entity);
     }
 }
Пример #2
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();
            }
        }