public GetTestDetailsQueryHandler(
     ITestRepository testRepository,
     IPcInfoRepository pcInfoRepository,
     ITestLineRepository testLineRepository,
     ITestRunRepository testRunRepository,
     IImageRepository imageRepository)
 {
     _testRepository     = testRepository;
     _pcInfoRepository   = pcInfoRepository;
     _testLineRepository = testLineRepository;
     _testRunRepository  = testRunRepository;
     _imageRepository    = imageRepository;
 }
示例#2
0
 public GetTestListQueryHandler(ITestRepository testRepository, IPcInfoRepository pcInfoRepository)
 {
     _testRepository   = testRepository;
     _pcInfoRepository = pcInfoRepository;
 }