示例#1
0
 public FindChapterHandler(IChapterRepo repo, IFileHandler fileHandler)
 {
     this._repo        = repo;
     this._fileHandler = fileHandler;
 }
 public ChapterImageIdsHandler(IChapterRepo repo)
 {
     this._repo = repo;
 }
示例#3
0
 public FileHandler(IChapterRepo chapterRepo, AppConfiguration config)
 {
     _chapterRepo = chapterRepo;
     this._config = config;
 }