Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. public class Endereco : EntityBase
  2. {
  3. public Endereco()
  4. {
  5.  
  6. }
  7.  
  8. public string CEP { get; set; }
  9. public string Logradouro { get; set; }
  10. public string Numero { get; set; }
  11. public string Complemento { get; set; }
  12. public string Bairro { get; set; }
  13. public string Estado { get; set; }
  14. public string Cidade { get; set; }
  15. public TipoEndereco TipoEndereco { get; set; }
  16. public bool EnderecoCorrespondencia { get; set; }
  17. }
  18.  
  19. public class Cliente
  20. {
  21. public int ID { get; set; }
  22. public string NomeCompleto { get; set; }
  23.  
  24. public virtual ICollection<Domain.Cadastros.Endereco> Enderecos { get; set; }
  25. }
Add Comment
Please, Sign In to add comment