Пример #1
0
        public PagedCollectionModel GetEFilingRequestList([FromUri] RequestStatus status = RequestStatus.Pending,
                                                          [FromUri] string keywords      = "")
        {
            const int PAGE_SIZE = 50;

            using (var usecases = new EFilingRequestUseCases()) {
                FixedList <EFilingRequestDto> list = usecases.GetEFilingRequestListByStatus(status, keywords, PAGE_SIZE);

                return(new PagedCollectionModel(this.Request, list));
            }
        }