public TestPollingService(
     IEventRepository eventRepository,
     IHourTestDataRepository hourTestDataRepository,
     ITestEventTypeProvider testEventTypeProvider)
 {
     this.eventRepository        = eventRepository;
     this.hourTestDataRepository = hourTestDataRepository;
     this.testEventTypeProvider  = testEventTypeProvider;
 }
 public TestEventPrimer(
     IHourTestDataRepository hourTestDataRepository,
     ICategoryRepository categoryRepository,
     IEventRepository eventRepository,
     IDatabaseService databaseService)
 {
     this.hourTestDataRepository = hourTestDataRepository;
     this.categoryRepository     = categoryRepository;
     this.eventRepository        = eventRepository;
     this.databaseService        = databaseService;
 }
Esempio n. 3
0
 public TestDataSetupService(
     ITestDataExcelParser testDataExcelParser,
     IBackupTestDataRepository backupTestDataRepository,
     IHourTestDataRepository hourTestDataRepository,
     IDbccTestDataRepository dbccTestDataRepository,
     IDatabasesCheckedTestDataRepository databasesCheckedTestDataRepository,
     IServerTestDataRepository serverTestDataRepository)
 {
     this.testDataExcelParser                = testDataExcelParser;
     this.backupTestDataRepository           = backupTestDataRepository;
     this.hourTestDataRepository             = hourTestDataRepository;
     this.dbccTestDataRepository             = dbccTestDataRepository;
     this.databasesCheckedTestDataRepository = databasesCheckedTestDataRepository;
     this.serverTestDataRepository           = serverTestDataRepository;
 }