public HomeController(TestServiceProxy testService)
 {
     this.testService = testService;
 }
 public HomeController(ILogger <HomeController> logger, TestServiceProxy testService)
 {
     _logger      = logger;
     _testService = testService;
 }
Esempio n. 3
0
 public TestsController(TestServiceProxy testServiceProxy)
 {
     this.testServiceProxy = testServiceProxy;
 }
Esempio n. 4
0
 public AgentListController(TestServiceProxy testServiceProxy)
 {
     this.testServiceProxy = testServiceProxy;
 }