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

UpdateAsync() public method

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