示例#1
0
 public AppTestDrive(ITestDriveService driveService)
 {
     _testDriveService = driveService;
 }
示例#2
0
 public TestDrivesController(ITestDriveService testDriveService)
 {
     this.testDriveService = testDriveService;
 }
示例#3
0
 public TestDriveController(AppDbContext appDbContext, ITestDriveService testDriveService)
 {
     this.appDbContext     = appDbContext;
     this.testDriveService = testDriveService;
 }