Exemple #1
0
 //Constructor for Test purpose Only
 public GarageController(GarageRepoInterface garageRepoTestInterface)
 {
     this.garage = garageRepoTestInterface;
 }
Exemple #2
0
 public GarageController(GarageRepoTests testRepo)
 {
     this.garage = testRepo;
 }
Exemple #3
0
 public GarageController()
 {
     this.garage = new GarageRepository();
 }