Ejemplo n.º 1
0
 @Override
 public StudentDocument save(StudentDocument obj)
     throws ObjectNotFoundException, ValidationException {
   return dao.save(obj);
 }
Ejemplo n.º 2
0
 @Override
 public PagingWrapper<StudentDocument> getAllForPerson(Person person, SortingAndPaging sAndP) {
   return dao.getAllForPerson(person, sAndP);
 }