public TestResultService(ITestResultDatabase testResultDatabase)
 {
     _testResultDatabase = testResultDatabase;
 }
Пример #2
0
 public TestRunService(ITestRunDatabase testRunDatabase, ITestResultDatabase testResultDatabase)
 {
     _testRunDatabase = testRunDatabase;
     _testResultDatabase = testResultDatabase;
 }