Пример #1
0
 public InternalAPIController(IServiceProvider services)
 {
     this._sourceWatcherService = (ISourceWatcherService)services.GetService(typeof(ISourceWatcherService));
     this._invokerCache         = (IInvokerCacheService)services.GetService(typeof(IInvokerCacheService));
     this._searchService        = (ISearchService)services.GetService(typeof(ISearchService));
     _internalApiHelper         = new InternalAPIHelper();
 }
Пример #2
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;
 }
Пример #3
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)
 {
 }
Пример #6
0
 public ProcessHealthController(ISourceWatcherService sourceWatcherService, ICompilerHostClient compilerHostClient)
 {
     // These dependencies are injected for the services to start.
     _sourceWatcherService = sourceWatcherService;
     _compilerHostClient   = compilerHostClient;
 }
Пример #7
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));
 }