コード例 #1
0
 public VehicleController(IVehicleDB vehicleDB)
 {
     this.vehicleDB = vehicleDB;
 }
コード例 #2
0
 public BookingController(IBookingDB bookingDB, IVehicleDB vehicleDB)
 {
     this.bookingDB = bookingDB;
     this.vehicleDB = vehicleDB;
 }