Ejemplo n.º 1
0
        public ServerTrackerHub(ILogger <ServerTrackerHub> logger, IEnvironmentsService envsSvc, IServersService serversSvc)
        {
            Log = logger;

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