mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
Change ParkingRating to use the POJO pattern
This commit is contained in:
parent
47e327d65e
commit
a02e59b81f
@ -1,6 +1,19 @@
|
||||
package com.uncc.gameday.registration;
|
||||
|
||||
public class ParkingRating {
|
||||
ParkingChoices parking_lot;
|
||||
RatingChoices rating;
|
||||
private ParkingChoices parking_lot;
|
||||
private RatingChoices rating;
|
||||
|
||||
public ParkingChoices getParkingLot() {
|
||||
return parking_lot;
|
||||
}
|
||||
public void setParkingLot(ParkingChoices parking_lot) {
|
||||
this.parking_lot = parking_lot;
|
||||
}
|
||||
public RatingChoices getRating() {
|
||||
return rating;
|
||||
}
|
||||
public void setRating(RatingChoices rating) {
|
||||
this.rating = rating;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user