コード例 #1
0
        public async Task <PresentationListingDto> Fetch()
        {
            var documents = await documentRepository.All();

            var presentations = await presentationRepository.All();

            return(new PresentationListingDto {
                Documents = documents, Presentations = presentations
            });
        }