public override IList <Chapter> GetAllChapters(string articleId)
 {
     using (TransactionScope transaction = new TransactionScope(mConfiguration))
     {
         ChapterDataStore chapter = new ChapterDataStore(transaction);
         return(chapter.FindAllItems(articleId));
     }
 }