예제 #1
0
        public List<T_HR_OUTAPPLYRECORD> EmployeeOutApplyRecordPaging(int pageIndex, int pageSize, string sort, string filterString, List<object> paras, ref int pageCount, string strCheckState, string strOwnerID)
        {
            using (OutApplyBLL bll = new OutApplyBLL())
            {
                var ents = bll.EmployeeOutApplyRecordPaging(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, strCheckState, strOwnerID);

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

                return ents.ToList();
            }
        }
예제 #2
0
        public List <T_HR_OUTAPPLYRECORD> EmployeeOutApplyRecordPaging(int pageIndex, int pageSize, string sort, string filterString, List <object> paras, ref int pageCount, string strCheckState, string strOwnerID)
        {
            using (OutApplyBLL bll = new OutApplyBLL())
            {
                var ents = bll.EmployeeOutApplyRecordPaging(pageIndex, pageSize, sort, filterString, paras, ref pageCount, strCheckState, strOwnerID);

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

                return(ents.ToList());
            }
        }