コード例 #1
0
 public RentalLocationController(IRentalLocationService rentalLocationService)
 {
     this.rentalLocationService = rentalLocationService;
 }
コード例 #2
0
 public RentalCarsController(IRentalCarsService rentalCarsService, IRentalLocationService rentalLocationService)
 {
     this.rentalCarsService     = rentalCarsService;
     this.rentalLocationService = rentalLocationService;
 }
コード例 #3
0
 public RentalLocationsController(IRentalLocationService rentalLocationService)
 {
     _rentalLocationService = rentalLocationService;
 }