public PersonCollection findPersons(List<String> names) {
PersonCollection collection = new PersonCollection();
for (String name : names) {
for (Person p : storage.getAll()) {
if (p.getName().equalsIgnoreCase(name)) {
collection.addPerson(p);
}
}
}
return collection;
}