public TestCaseResultController(ITestCaseResultRepository testCaseResultRepo)
 {
     _testCaseResultRepository = testCaseResultRepo;
 }
Пример #2
0
 public TestCaseRepository(string connectionString) : base(connectionString)
 {
     _testStepRepository       = new TestStepRepository(connectionString);
     _testCaseResultRepository = new TestCaseResultRepository(connectionString);
 }