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