Example #1
0
        // CONSTRUCTORES

        public Cventa(decimal subtotal, decimal total, decimal descuento, Cpago FP)
        {
            lista       = new List <Citem>();
            Pago        = FP;
            Subtotal    = subtotal;
            Total       = total;
            DescRecargo = descuento;
        }
Example #2
0
 public Cventa(Cpago opago)
 {
     lista = new List <Citem>();
     Pago  = opago;
 }