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; }
public PosOrdenDetalle() { posOrden = new PosOrden(); producto = new Producto(); }