示例#1
0
 /// <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));
 }
示例#2
0
 /// <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));
 }