mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-08-05 06:55:32 -04:00
Split the RegistrationClient into registration and parking
This commit is contained in:
@ -24,29 +24,6 @@ public class RegistrationClient {
|
||||
gds = ra.create(GamedayService.class);
|
||||
}
|
||||
|
||||
public List<ParkingLot> listLots() {
|
||||
return gds.listLots();
|
||||
}
|
||||
|
||||
public ParkingLot listLot(ParkingChoices choice) {
|
||||
return gds.listLot(choice.getValue());
|
||||
}
|
||||
|
||||
public ParkingLot listLot(ParkingLot lot) {
|
||||
return gds.listLot(lot.getLocation().getValue());
|
||||
}
|
||||
|
||||
public void rateLot(RatingChoices rating, ParkingChoices parkingLot) {
|
||||
ParkingRating pRating = new ParkingRating();
|
||||
pRating.setParkingLot(parkingLot);
|
||||
pRating.setRating(rating);
|
||||
gds.rateLot(pRating, new ParkingLotCallback());
|
||||
}
|
||||
|
||||
public void rateLot(ParkingRating rating) {
|
||||
gds.rateLot(rating, new ParkingLotCallback());
|
||||
}
|
||||
|
||||
public void registerAttendee(Attendee a) {
|
||||
gds.registerUser(a, new AttendeeCallback());
|
||||
}
|
||||
|
Reference in New Issue
Block a user