@Override
public List<T> pesquisar(T entidade, int pagina, int maxItens) throws ServiceException {
try {
return dao.pesquisar(entidade, pagina, maxItens);
} catch (DAOException e) {
throw new ServiceException(obterEntidadeDoParametroGenerico(), EventType.PESQUISAR, e);
}
}