public ImovelRevisitar buscarImovelRevisitarPorImovel(Integer idImovel)
     throws ControladorException {
   try {
     return repositorioImovelRevisitar.buscarImovelRevisitarPorImovel(idImovel);
   } catch (RepositorioException ex) {
     ex.printStackTrace();
     Log.e(ConstantesSistema.CATEGORIA, ex.getMessage());
     throw new ControladorException(context.getResources().getString(R.string.db_erro));
   }
 }