RegistrationClient can now look up by first and last name

master
bspeice 2013-10-19 21:26:59 -04:00
parent c78d2e526a
commit 20bba0e571
1 changed files with 4 additions and 0 deletions

View File

@ -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();
}