Exemple #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;
 }
Exemple #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)
 {
 }
Exemple #5
0
 public PDFController(IStampService stampService)
 {
     _stampService = stampService;
 }
Exemple #6
0
 public StampServiceTest(ITestOutputHelper output)
 {
     _output       = output;
     _stampService = new StampService();
 }