Exemple #1
0
 public infNFe()
 {
     ide     = new ide();
     emit    = new emit();
     dest    = new dest();
     total   = new total();
     transp  = new transp();
     pag     = new pag();
     infAdic = new infAdic();
 }
Exemple #2
0
        private static string ObtemDescricao(pag pag)
        {
            switch (pag.tPag)
            {
            case FormaPagamento.fpDinheiro:
                return("Dinheiro");

            case FormaPagamento.fpCheque:
                return("Cheque");

            case FormaPagamento.fpCartaoCredito:
                return("Cartão de Crédito");

            case FormaPagamento.fpCartaoDebito:
                return("Cartão de Débito");

            case FormaPagamento.fpCreditoLoja:
                return("Crédito Loja");

            case FormaPagamento.fpValeAlimentacao:
                return("Vale Alimentação");

            case FormaPagamento.fpValeRefeicao:
                return("Vale Refeição");

            case FormaPagamento.fpValePresente:
                return("Vale Presente");

            case FormaPagamento.fpValeCombustivel:
                return("Vale Combustível");

            case FormaPagamento.fpOutro:
                return("Outros");

            default: throw new ArgumentException("Forma pagamento inválida");
            }
        }
 protected void SetPagamento(pag pag)
 {
     Pag = pag;
 }