Пример #1
0
 public Contato(long id, String nome, String email, EnumSimNao ativo, IList<Telefone> telefones, IList<RedeSocial> redesSociais)
 {
     this.telefones = new List<Telefone>();
     this.redesSociais = new List<RedeSocial>();
     this.id = id;
     this.nome = nome;
     this.email = email;
     this.ativo = ativo;
     this.telefones = telefones;
     this.redesSociais = redesSociais;
 }
 public TipoRedeSocial(Nullable<long> id, String nome, EnumSimNao ativo)
 {
     this.id = id;
     this.nome = nome;
     this.ativo = ativo;
 }
Пример #3
0
 public TipoTelefone(Nullable<long> id, String nome, EnumSimNao ativo)
 {
     this.id = id;
     this.nome = nome;
     this.ativo = ativo;
 }