Пример #1
0
 public PosOrdenDetalle(PosOrden posOrden, Producto producto, float impuesto, int cantidad, float descuento, float precioUnitario, float precioSubtotal)
 {
     this.posOrden       = posOrden;
     this.producto       = producto;
     this.impuesto       = impuesto;
     this.cantidad       = cantidad;
     this.descuento      = descuento;
     this.precioUnitario = precioUnitario;
     this.precioSubtotal = precioSubtotal;
 }
Пример #2
0
 public PosOrdenDetalle()
 {
     posOrden = new PosOrden();
     producto = new Producto();
 }