Пример #1
0
        public ServerTrackerHub(ILogger <ServerTrackerHub> logger, IEnvironmentsService envsSvc, IServersService serversSvc)
        {
            Log = logger;

            EnvsSvc    = envsSvc;
            ServersSvc = serversSvc;
        }
Пример #2
0
 public TestFileController(ITestService testsClient, IEnvironmentsService environmentsService, IConfiguration configuration, ITestFileMapper testFileMapper)
 {
     _testsClient         = testsClient;
     _environmentsService = environmentsService;
     _configuration       = configuration;
     _testFileMapper      = testFileMapper;
 }
Пример #3
0
 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;
 }
Пример #5
0
 public ResultsController(IUrlHelper urlHelper, ITestService testsClient, IEnvironmentsService environmentsService)
 {
     _urlHelper           = urlHelper;
     _testsClient         = testsClient;
     _environmentsService = environmentsService;
 }
Пример #6
0
 public TestFileMapper(IConfigurationService configurationService, IEnvironmentsService environmentsService)
 {
     _configurationService = configurationService;
     _environmentsService  = environmentsService;
 }