mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
RegistrationClient can now look up by first and last name
This commit is contained in:
parent
c78d2e526a
commit
20bba0e571
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user