public HomeController(ICurrentHostSettings currentHostSettings, IFileProvider fileProvider, IHostingEnvironment env,
                       IMediator mediatr, IMapper mapper) : base(mapper, mediatr)
 {
     _currentHostSettings = currentHostSettings;
     _fileProvider        = fileProvider;
     _env = env;
 }
Beispiel #2
0
 public BenchmarkOrchestratorService(IRepository <BenchmarkExperiment> appTestRepo,
                                     ILogger <BenchmarkOrchestratorService> logger,
                                     ICurrentHostSettings hostSettings,
                                     IRepository <ContainerMetric> containerMetricRepo,
                                     IRepository <DockerHost> dockerHostRepo,
                                     IBackgroundJobClient backgroungJobClient,
                                     IMediator mediatr)
 {
     _appTestRepo         = appTestRepo;
     _logger              = logger;
     _hostSettings        = hostSettings;
     _containerMetricRepo = containerMetricRepo;
     _dockerHostRepo      = dockerHostRepo;
     _backgroungJobClient = backgroungJobClient;
     _mediatr             = mediatr;
 }
 public ApacheJmeterFileService(IRepository <BenchmarkExperiment> repo, ICurrentHostSettings hostSettings)
 {
     _repo         = repo;
     _hostSettings = hostSettings;
 }