public ParkingLotController(IParkingLotService parkingLotService, IParkingFloorService parkingFloorService)
 {
     this.parkingLotService   = parkingLotService;
     this.parkingFloorService = parkingFloorService;
 }
Esempio n. 2
0
 public ParkingSpotController(IParkingSpotService parkingSpotService, IVehicleService vehicleService, IParkingFloorService parkingFloorService)
 {
     this.parkingSpotService  = parkingSpotService;
     this.vehicleService      = vehicleService;
     this.parkingFloorService = parkingFloorService;
 }