BooksServiceSample.Models.BookChaptersRepository.GetAllAsync C# (CSharp) Method

GetAllAsync() public method

public GetAllAsync ( ) : Task>
return Task>
        public async Task<IEnumerable<BookChapter>> GetAllAsync() =>
            await _booksContext.Chapters.ToListAsync();