예제 #1
0
 public RentalLocationController(IRentalLocationService rentalLocationService)
 {
     this.rentalLocationService = rentalLocationService;
 }
 public RentalCarsController(IRentalCarsService rentalCarsService, IRentalLocationService rentalLocationService)
 {
     this.rentalCarsService     = rentalCarsService;
     this.rentalLocationService = rentalLocationService;
 }
 public RentalLocationsController(IRentalLocationService rentalLocationService)
 {
     _rentalLocationService = rentalLocationService;
 }