public ServerTrackerHub(ILogger <ServerTrackerHub> logger, IEnvironmentsService envsSvc, IServersService serversSvc) { Log = logger; EnvsSvc = envsSvc; ServersSvc = serversSvc; }
public TestFileController(ITestService testsClient, IEnvironmentsService environmentsService, IConfiguration configuration, ITestFileMapper testFileMapper) { _testsClient = testsClient; _environmentsService = environmentsService; _configuration = configuration; _testFileMapper = testFileMapper; }
public HomeController( ITestService testsClient, Func <IRunViewModel> runViewModelFactory, IHealthCheck healthCheck, IEnvironmentsService environmentsService, IConfiguration configuration) { _testsClient = testsClient; _runViewModelFactory = runViewModelFactory; _healthCheck = healthCheck; _environmentsService = environmentsService; _configuration = configuration; }
public EnvironmentsController(IEnvironmentsService environmentsService, IMapper mapper) { _environmentsService = environmentsService; _mapper = mapper; }
public ResultsController(IUrlHelper urlHelper, ITestService testsClient, IEnvironmentsService environmentsService) { _urlHelper = urlHelper; _testsClient = testsClient; _environmentsService = environmentsService; }
public TestFileMapper(IConfigurationService configurationService, IEnvironmentsService environmentsService) { _configurationService = configurationService; _environmentsService = environmentsService; }