/// <summary> /// Gets a single chapter for an item /// </summary> /// <param name="id">The id.</param> /// <param name="index">The index.</param> /// <returns>ChapterInfo.</returns> /// <exception cref="System.ArgumentNullException">id</exception> public ChapterInfo GetChapter(Guid id, int index) { CheckDisposed(); return(_chapterRepository.GetChapter(id, index)); }
/// <summary> /// Gets a single chapter for an item /// </summary> /// <param name="id">The id.</param> /// <param name="index">The index.</param> /// <returns>ChapterInfo.</returns> /// <exception cref="System.ArgumentNullException">id</exception> public ChapterInfo GetChapter(Guid id, int index) { return(_chapterRepository.GetChapter(id, index)); }