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