public TestAgentRunner(
     IMetricSystemManagerService manager,
     IMetricSystemWorkerService worker,
     IAppSettingsConfigurationService configurationService)
 {
     this.manager = manager;
     this.worker  = worker;
     this.configurationService = configurationService;
 }
 public ScriptInstaller(
     IDatabaseDeployer databaseDeployer,
     IAppSettingsConfigurationService configurationService,
     IAdministrationInstallationService administrationInstallationService)
 {
     this.administrationInstallationService = administrationInstallationService;
     this.databaseDeployer     = databaseDeployer;
     this.configurationService = configurationService;
 }
 public ConfiguredConnectionFactory(IAppSettingsConfigurationService configService)
     : base(new ConfiguredWorkspaceServerProvider(configService))
 {
     this.configService = configService;
 }
 public ConfiguredWorkspaceServerProvider(IAppSettingsConfigurationService configService)
 {
     this.configService = configService;
 }