Example #1
0
 public TestManagerController(ITestManagerService testManagerService, IUserService userService, IResultManagerService resultManagerService)
 {
     this.testManagerService   = testManagerService;
     this.userService          = userService;
     this.resultManagerService = resultManagerService;
 }
 public AuthController(ITestManagerService testManagerService)
 {
     _testManagerService = testManagerService;
 }
Example #3
0
 public ExecutionController(ITestManagerService testManagerService)
 {
     _testManagerService = testManagerService;
 }
Example #4
0
 public HomeController(ITestManagerService testManagerService)
 {
     this._testManagerService = testManagerService;
 }
Example #5
0
 public CycleController(ITestManagerService testManagerService)
 {
     _testManagerService = testManagerService;
 }