Example #1
0
        public List<T_HR_LEAVETYPESET> GetLeaveTypeSetRdListByMultSearch(string strOwnerID, string strLeaveTypeValue,
            string strSortKey, int pageIndex, int pageSize, ref int pageCount)
        {
            using (LeaveTypeSetBLL bllLeaveTypeSet = new LeaveTypeSetBLL())
            {
                var ents = bllLeaveTypeSet.GetLeaveTypeSetRdListByMultSearch(strOwnerID, strLeaveTypeValue, strSortKey, pageIndex, pageSize, ref pageCount);

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

                return ents.ToList();
            }
        }