Example #1
0
        public List<T_HR_SCHEDULINGTEMPLATEMASTER> GetSchedulingTemplateMasterListByMultSearch(string strOwnerID, string strSchedulingTemplateName, string strCircleType,
            string strSortKey, int pageIndex, int pageSize, ref int pageCount)
        {
            using (SchedulingTemplateMasterBLL bllSchedulingTemplateMaster = new SchedulingTemplateMasterBLL())
            {
                var ents = bllSchedulingTemplateMaster.GetSchedulingTemplateMasterRdListByMultSearch(strOwnerID, strSchedulingTemplateName, strCircleType, strSortKey, pageIndex, pageSize, ref pageCount).ToList();

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

                return ents.ToList();
            }
        }