Ejemplo n.º 1
0
 public VahicleController(ITaxiCabVehicleRepository repository)
 {
     this.repository = repository;
 }
Ejemplo n.º 2
0
 public void TestInitialize()
 {
     // We can change the repository to MONGO DB REPOSITORY, because VahicleController accept
     // ITaxiCabVehicleRepository objects
     repository = new TaxiCabVehicleRepository();
 }