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

AddAsync() public method

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