Exemplo n.º 1
0
 public AppTestDrive(ITestDriveService driveService)
 {
     _testDriveService = driveService;
 }
Exemplo n.º 2
0
 public TestDrivesController(ITestDriveService testDriveService)
 {
     this.testDriveService = testDriveService;
 }
Exemplo n.º 3
0
 public TestDriveController(AppDbContext appDbContext, ITestDriveService testDriveService)
 {
     this.appDbContext     = appDbContext;
     this.testDriveService = testDriveService;
 }