Example #1
0
 public EnderecoVO()
 {
     UF  = new UFVO();
     CEP = new CepVO();
 }
Example #2
0
        public List <EstadoViewModel> ObterListaEstados()
        {
            var Uf = new UFVO();

            return(Mapper.Map <IEnumerable <Estado>, IEnumerable <EstadoViewModel> >(Uf.ListarEstados()).ToList());
        }