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

AddAsync() public method

public AddAsync ( BookChapter chapter ) : System.Threading.Tasks.Task
chapter BookChapter
return System.Threading.Tasks.Task
        public async Task AddAsync(BookChapter chapter)
        {
            _booksContext.Chapters.Add(chapter);
            await _booksContext.SaveChangesAsync();
        }