public void AgregarProducto(Producto producto) { //Productos.Add(producto); }
public Vendido(Producto producto, int venta) { this.Producto = producto.Id; this.Venta = venta; }
public void AgregarDetalle(Producto producto, int nuevaCantidad, decimal valorUnitario, int idFactura) { Detalle detalle = new DetalleCompra(producto, nuevaCantidad, valorUnitario, idFactura); Detalles.Add(detalle); }