public HomeController(IDebugService debugService, IAdminService adminService, ITestTechService testTechService)
 {
     this.debugService    = debugService;
     this.adminService    = adminService;
     this.testTechService = testTechService;
 }
 public TestTechController(ITestTechService testTechService, IDebugService debugService)
 {
     this.testTechService = testTechService;
     this.debugService    = debugService;
 }