Example #1
0
        public List<T_HR_ATTENDMACHINESET> GetAttendMachineSetPaging(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount, string strCheckState, string userid)
        {
            using (AttendMachineSetBLL bll = new AttendMachineSetBLL())
            {
                var ents = bll.GetAttendMachineSetPaging(pageIndex, pageSize, sort, filterString, paras, ref pageCount, strCheckState, userid);

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

                return ents.ToList();
            }
        }