mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-07-01 22:07:39 -04:00
RegistrationClient can now look up by first and last name
This commit is contained in:
@ -49,6 +49,10 @@ public class RegistrationClient {
|
||||
return gds.getUser(id);
|
||||
}
|
||||
|
||||
public Attendee listAttendee(Attendee a) {
|
||||
return gds.getUser(a.getFirstName(), a.getLastName());
|
||||
}
|
||||
|
||||
public List<Attendee> listAttendees() {
|
||||
return gds.getAllUsers();
|
||||
}
|
||||
|
Reference in New Issue
Block a user