Пример #1
0
 public Endereco(EstruturaGeral estruturaGeral)
 {
     this.strEndereco = estruturaGeral.Cliente.Endereco;
     this.Numero      = estruturaGeral.Cliente.Numero;
     this.Complemento = estruturaGeral.Cliente.Complemento;
     this.Bairro      = estruturaGeral.Cliente.Bairro;
     this.Uf          = estruturaGeral.Cliente.Uf;
     this.CEP         = estruturaGeral.Cliente.CEP;
 }
Пример #2
0
 public InfRps(EstruturaGeral estruturaGeral)
 {
     this.Id             = estruturaGeral.Id.ToString();
     this.Identificacao  = new Identificacao(estruturaGeral);
     this.DataEmissao    = estruturaGeral.DataEmissao;
     this.Servico        = new Servico(estruturaGeral);
     this.Prestador      = new Prestador(estruturaGeral);
     this.Tomardor       = new Tomador(estruturaGeral);
     this.Cliente        = estruturaGeral.Cliente;
     this.IdentificarRPS = estruturaGeral.IdentificarRPS;
 }
Пример #3
0
 public Contato(EstruturaGeral estruturaGeral)
 {
     this.Email = estruturaGeral.Cliente.Email;
 }
Пример #4
0
 public CPFCNPJ(EstruturaGeral estruturaGeral)
 {
     this.CPF = estruturaGeral.Cliente.CPF;
 }
Пример #5
0
 public IdentificacaoTomador(EstruturaGeral estruturaGeral)
 {
     this.CpfCnpj = new CPFCNPJ(estruturaGeral);
 }
Пример #6
0
 public Tomador(EstruturaGeral estruturaGeral)
 {
     this.IdentificacaoTomador = new IdentificacaoTomador(estruturaGeral);
     this.Endereco             = new Endereco(estruturaGeral);
     this.Contato = new Contato(estruturaGeral);
 }
Пример #7
0
 public Prestador(EstruturaGeral estruturaGeral)
 {
     this.CNPJ = estruturaGeral.CNPJ;
     this.IE   = estruturaGeral.IE;
 }
Пример #8
0
 public Valores(EstruturaGeral estruturaGeral)
 {
     this.Valor = estruturaGeral.Valor;
 }
Пример #9
0
 public Servico(EstruturaGeral estruturaGeral)
 {
     this.Valores = new Valores(estruturaGeral);
 }
Пример #10
0
 public Identificacao(EstruturaGeral estruturaGeral)
 {
     this.Numero = estruturaGeral.Numero;
     this.Serie  = estruturaGeral.Serie;
     this.Tipo   = estruturaGeral.Tipo;
 }
Пример #11
0
 public RPS(EstruturaGeral estruturaGeral)
 {
     this.InfRps = new InfRps(estruturaGeral);
 }