RegistrationClient should take in a ParkingChoice to list, not a lot

master
bspeice 2013-10-18 18:05:32 -04:00
parent 128ca8fad9
commit 47e327d65e
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ public class RegistrationClient {
return gds.listLots();
}
public ParkingLot listLot(ParkingLot lot) {
return gds.listLot(lot.location.getValue());
public ParkingLot listLot(ParkingChoices choice) {
return gds.listLot(choice.getValue());
}
public void rateLot(ParkingRating rating, ParkingChoices parkingLot) {