Exemplo n.º 1
0
 public DiagnosticControllerBase(IStampService stampService, ICompilerHostClient compilerHostClient, ISourceWatcherService sourceWatcherService, IInvokerCacheService invokerCache, IDataSourcesConfigurationService dataSourcesConfigService)
 {
     this._compilerHostClient       = compilerHostClient;
     this._sourceWatcherService     = sourceWatcherService;
     this._invokerCache             = invokerCache;
     this._dataSourcesConfigService = dataSourcesConfigService;
     this._stampService             = stampService;
 }
Exemplo n.º 2
0
 public SiteControllerBase(IStampService stampService, ISiteService siteService, ICompilerHostClient compilerHostClient, ISourceWatcherService sourceWatcherService, IInvokerCacheService invokerCache, IDataSourcesConfigurationService dataSourcesConfigService)
     : base(stampService, compilerHostClient, sourceWatcherService, invokerCache, dataSourcesConfigService)
 {
     this._siteService = siteService;
 }
 public HostingEnvironmentController(IStampService stampService, ICompilerHostClient compilerHostClient, ISourceWatcherService sourceWatcherService, IInvokerCacheService invokerCache, IDataSourcesConfigurationService dataSourcesConfigService)
     : base(stampService, compilerHostClient, sourceWatcherService, invokerCache, dataSourcesConfigService)
 {
 }
 public AppServiceCertificateController(IStampService stampService, ICompilerHostClient compilerHostClient, ISourceWatcherService sourceWatcherService, IInvokerCacheService invokerCache, IDataSourcesConfigurationService dataSourcesConfigService)
     : base(stampService, compilerHostClient, sourceWatcherService, invokerCache, dataSourcesConfigService)
 {
 }
Exemplo n.º 5
0
 public ProcessHealthController(ISourceWatcherService sourceWatcherService, ICompilerHostClient compilerHostClient)
 {
     // These dependencies are injected for the services to start.
     _sourceWatcherService = sourceWatcherService;
     _compilerHostClient   = compilerHostClient;
 }
Exemplo n.º 6
0
 public ProcessHealthController(IServiceProvider services)
 {
     // These dependencies are injected for the services to start.
     _sourceWatcherService = (ISourceWatcherService)services.GetService(typeof(ISourceWatcherService));
     _compilerHostClient   = (ICompilerHostClient)services.GetService(typeof(ICompilerHostClient));
 }