public ProjectWatcherService(IHashService service,
                              IProjectWatcherRepository projectWatcherRepository,
                              ITestReportRepository testReportRepository)
 {
     _testReportRepository     = testReportRepository;
     _projectWatcherRepository = projectWatcherRepository;
     _service = service;
 }
示例#2
0
 public TestReportService(ITestReportRepository testReportRepository)
 {
     _testReportRepository = testReportRepository;
 }
 MbUnitReportFactory(ITestReportRepository repository)
 {
     this.repository = repository;
 }
示例#4
0
 public TestReportService(ITestReportRepository repository, IConfiguration config)
 {
     _repository = repository;
     accessKey   = "AKIAQUIYJ2BUI2SWRQHH";                     // config.GetSection("AWSSDK:access_key").Value;
     secretKey   = "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"; // config.GetSection("AWSSDK:secret_key").Value;
 }