Ejemplo n.º 1
0
 public FileService(
     IPathService pathService,
     IEnvironmentFileService environmentFileService)
 {
     _pathService            = pathService;
     _environmentFileService = environmentFileService;
 }
Ejemplo n.º 2
0
 public FileService(
     IPathService pathService,
     IEnvironmentFileService environmentFileService,
     ILogger logger)
 {
     _pathService            = pathService;
     _environmentFileService = environmentFileService;
     _logger = logger;
 }
Ejemplo n.º 3
0
 public EnvironmentFileServiceWindowsDecorator(IEnvironmentFileService environmentFileService)
 {
     _environmentFileService = environmentFileService;
 }