public FileSystemService(IXmlService xmlService, IFilenameGeneratorService filenameGeneratorService, IDirectoryService directoryService, IGuidGeneratorService guidGeneratorService)
 {
     XmlService = xmlService;
     FilenameGeneratorService = filenameGeneratorService;
     DirectoryService         = directoryService;
     GuidGeneratorService     = guidGeneratorService;
 }
Beispiel #2
0
 public TradeService(
     IOptions <TradeServiceOptions> options,
     ITradeRepository repo,
     IGuidGeneratorService uids,
     ILocalTimeService timestamps)
 {
     _options    = options;
     _repo       = repo;
     _uids       = uids;
     _timestamps = timestamps;
 }
Beispiel #3
0
 public UpdaterProvider(IApplicationExitProvider applicationExitProvider, IFileService fileService, IDirectoryService directoryService, IWebClientService webClientService, IPathService pathService, IAssemblyService assemblyService, IProcessStarterService processStarterService, IGuidGeneratorService guidGeneratorService, IIsCurrentVersionProvider isCurrentVersionProvider, IGlobalLogService globalLogService)
 {
     this._applicationExitProvider  = applicationExitProvider;
     this._fileService              = fileService;
     this._directoryService         = directoryService;
     this._webClientService         = webClientService;
     this._pathService              = pathService;
     this._assemblyService          = assemblyService;
     this._processStarterService    = processStarterService;
     this._guidGeneratorService     = guidGeneratorService;
     this._isCurrentVersionProvider = isCurrentVersionProvider;
     this._globalLogService         = globalLogService;
 }