public Person find(Long id) {
   return dao.find(id);
 }
 public Person[] find(Long... ids) {
   return dao.find(ids);
 }