Esempio n. 1
0
        /// <summary>
        /// 페이징 처리 된 대시보드 테이블 업무 영역 리스트를 반환한다.
        /// </summary>
        public PagedModel <FormTableSection> GetFormTableSectionPagedList(PagingOption option)
        {
            option.ThrowIfNull(nameof(option));
            option.Validate();

            using (var repo = new FormTableRepository())
            {
                return(repo.SelectFormTableSectionPagedList(option));
            }
        }