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