Exemplo n.º 1
0
 public KuduFileService(IPublishSettingsService publishSettingsService,
                        ILocalLogService localLogService, IFileWatcherService fileWatcherService)
 {
     _fileWatcherService     = fileWatcherService;
     _publishSettingsService = publishSettingsService;
     _localLogService        = localLogService;
 }
Exemplo n.º 2
0
 public AppLifecycleService(ILocalLogService logService,
                            IPublishSettingsService publishSettingsService,
                            ICommandProcessorService commandProcessorService)
 {
     _logService              = logService;
     _publishSettingsService  = publishSettingsService;
     _commandProcessorService = commandProcessorService;
 }
Exemplo n.º 3
0
 public TestService(IFileRepo fileRepo,
                    IFunctionSettingsService functionSettings,
                    IPublishSettingsService pubSettingsService,
                    ILocalLogService localLogService,
                    IParamService paramService)
 {
     this._paramService       = paramService;
     this._localLogService    = localLogService;
     this._pubSettingsService = pubSettingsService;
     this._functionSettings   = functionSettings;
     this._fileRepo           = fileRepo;
 }
Exemplo n.º 4
0
 public CommandProcessorService(ILocalLogService logService,
                                IKuduLogService kuduLogService, IKuduFileService fileService,
                                IPublishSettingsService publishSettingsService,
                                IParamService paramService,
                                ITestService testService)
 {
     this._paramService      = paramService;
     _testService            = testService;
     _logService             = logService;
     _kuduLogService         = kuduLogService;
     _fileService            = fileService;
     _publishSettingsService = publishSettingsService;
 }
Exemplo n.º 5
0
 public KuduLogService(IPublishSettingsService publishSettingsService, ILocalLogService localLogService)
 {
     _publishSettingsService = publishSettingsService;
     _localLogService        = localLogService;
 }
Exemplo n.º 6
0
 public FunctionSettingsService(IPublishSettingsService publishSettingsService,
                                ILocalLogService logService)
 {
     this._logService             = logService;
     this._publishSettingsService = publishSettingsService;
 }