public TestCasesHistoryService(
     IServiceClient <TestCaseHistoryDto> testCaseHistoryRepository,
     IServiceClient <TestCaseHistoryEntryDto> testCaseHistoryEntryRepository,
     ITestCaseRunsServiceClient testCaseRunsServiceClient,
     IJsonSerializer jsonSerializer,
     IFileProvider fileProvider,
     IPathProvider pathProvider,
     IDirectoryProvider directoryProvider)
 {
     _testCaseHistoryRepository      = testCaseHistoryRepository;
     _testCaseHistoryEntryRepository = testCaseHistoryEntryRepository;
     _testCaseRunsServiceClient      = testCaseRunsServiceClient;
     _jsonSerializer    = jsonSerializer;
     _fileProvider      = fileProvider;
     _pathProvider      = pathProvider;
     _directoryProvider = directoryProvider;
 }
Example #2
0
 public TestCasesHistoryService(
     IServiceClient <TestCaseHistoryDto> testCaseHistoryRepository, ITestCaseRunsServiceClient testCaseRunsServiceClient)
 {
     _testCaseHistoryRepository = testCaseHistoryRepository;
     _testCaseRunsServiceClient = testCaseRunsServiceClient;
 }