Ejemplo n.º 1
0
 public TestFileController(ITestService testsClient, IEnvironmentsService environmentsService, IConfiguration configuration, ITestFileMapper testFileMapper)
 {
     _testsClient         = testsClient;
     _environmentsService = environmentsService;
     _configuration       = configuration;
     _testFileMapper      = testFileMapper;
 }
Ejemplo n.º 2
0
 public TestController(ITestService testsClient, ITestFileMapper testFileMapper)
 {
     _testsClient    = testsClient;
     _testFileMapper = testFileMapper;
 }