293031323334353637
Cidade cd2 = this.cdRep.pesquisarCidadePorNome(cd.getNome()); if(cd2 == null){ this.cdRep.salvarCidade(cd); }else{ throw new CidadeJaCadastradaException("Cidade já cadastrado!"); } }
5152535455565758
Cidade cd2 = this.cdRep.pesquisarCidadePorNome(cd.getNome()); if(cd2 == null){ this.cdRep.alterarCidade(cd); }else{ throw new CidadeJaCadastradaException("Cidade já cadastrado!"); } }