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

UpdateAsync() public method

public UpdateAsync ( BookChapter chapter ) : System.Threading.Tasks.Task
chapter BookChapter
return System.Threading.Tasks.Task
        public Task UpdateAsync(BookChapter chapter)
        {
            _chapters[chapter.Id] = chapter;
            return Task.FromResult<object>(null);
        }