示例#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;
 }
示例#3
0
 public ExecutionController(ITestManagerService testManagerService)
 {
     _testManagerService = testManagerService;
 }
示例#4
0
 public HomeController(ITestManagerService testManagerService)
 {
     this._testManagerService = testManagerService;
 }
示例#5
0
 public CycleController(ITestManagerService testManagerService)
 {
     _testManagerService = testManagerService;
 }