public VehicleController(IVehicleDB vehicleDB) { this.vehicleDB = vehicleDB; }
public BookingController(IBookingDB bookingDB, IVehicleDB vehicleDB) { this.bookingDB = bookingDB; this.vehicleDB = vehicleDB; }