Ejemplo n.º 1
0
 public VehicleController(IVehicleDB vehicleDB)
 {
     this.vehicleDB = vehicleDB;
 }
Ejemplo n.º 2
0
 public BookingController(IBookingDB bookingDB, IVehicleDB vehicleDB)
 {
     this.bookingDB = bookingDB;
     this.vehicleDB = vehicleDB;
 }