Example #1
0
 private Imovel AptoParaAdicionarImovel(Imovel imovel)
 {
     if (!imovel.EstaConsistente())
     {
         return(imovel);
     }
     imovel = VerificarSeIdentificadorExisteEmInclusao(imovel);
     imovel = VerificaSeIdEdificacaoEstaPreenchido(imovel);
     imovel = VerificaSeSiglaImovelEstaPreenchido(imovel);
     imovel = VerificaSeNumeroDaPortaEstaPreenchido(imovel);
     return(imovel);
 }