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

Find() public method

public Find ( string id ) : BookChapter
id string
return BookChapter
        public BookChapter Find(string id)
        {
            BookChapter chapter;
            _chapters.TryGetValue(id, out chapter);
            return chapter;
        }