RegistrationClient can now look up by first and last name

This commit is contained in:
bspeice 2013-10-19 21:26:59 -04:00
parent c78d2e526a
commit 20bba0e571

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