Пример #1
0
 public Cliente(List <Documento> documentos, List <Endereco> enderecos, List <Dependente> dependentes, string nome, decimal credito, string cpf, TpCliente tpCliente) : base(documentos)
 {
     this.enderecos   = enderecos;
     this.dependentes = dependentes;
     this.nome        = nome;
     this.credito     = credito;
     this.cpf         = cpf;
     this.tpCliente   = tpCliente;
 }
Пример #2
0
 public void SetTipoCliente(TpCliente tpCliente)
 {
     this.tpCliente = tpCliente;
 }