public ImagesHandler(
     IFileRepository filePathServant,
     IUrlAlignmentService urlAligner,
     IFilePathFactory filePathFactory)
     : base(filePathServant, urlAligner, filePathFactory)
 {
 }
 protected PartHandlerBase(
     IFileRepository fileRepo,
     IUrlAlignmentService urlAligner,
     IFilePathFactory filePathFactory)
 {
     _fileRepo        = fileRepo;
     _urlAligner      = urlAligner;
     _filePathFactory = filePathFactory;
 }
 public CssFilesHandler(
     IFileSystem fileSystem,
     IFileRepository fileRepo,
     IUrlAlignmentService urlAligner,
     IFilePathFactory filePathFactory,
     ICssFileRepository cssFileRepository)
     : base(fileRepo, urlAligner, filePathFactory)
 {
     _fileSystem        = fileSystem;
     _fileRepo          = fileRepo;
     _cssFileRepository = cssFileRepository;
 }
Exemplo n.º 4
0
 public LinksHandler(IFileRepository fileRepo, IUrlAlignmentService urlAligner, IFilePathFactory filePathFactory)
     : base(fileRepo, urlAligner, filePathFactory)
 {
 }
Exemplo n.º 5
0
 public RandomPatternReadFasade(IFilePathFactory filePathFactory, ISudokuGridGenerator sudokuGridGenerator)
 {
     this.filePathFactory     = filePathFactory;
     this.sudokuGridGenerator = sudokuGridGenerator;
 }