}
@Override
public T recuperar(Serializable id) throws ValidationException, ServiceException {
if (id == null) {
throw new ValidationException(obterEntidadeDoParametroGenerico(), EventType.RECUPERAR);
}
try {
return dao.recuperar(id);
} catch (DAOException e) {
throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.RECUPERAR, e);