Exemplo n.º 1
0
 public FindChapterHandler(IChapterRepo repo, IFileHandler fileHandler)
 {
     this._repo        = repo;
     this._fileHandler = fileHandler;
 }
Exemplo n.º 2
0
 public ChapterImageIdsHandler(IChapterRepo repo)
 {
     this._repo = repo;
 }
Exemplo n.º 3
0
 public FileHandler(IChapterRepo chapterRepo, AppConfiguration config)
 {
     _chapterRepo = chapterRepo;
     this._config = config;
 }