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; }
public void SetTipoCliente(TpCliente tpCliente) { this.tpCliente = tpCliente; }