示例#1
0
 public void AgregarProducto(Producto producto)
 {
     //Productos.Add(producto);
 }
示例#2
0
 public Vendido(Producto producto, int venta)
 {
     this.Producto = producto.Id;
     this.Venta = venta;
 }
示例#3
0
        public void AgregarDetalle(Producto producto, int nuevaCantidad, decimal valorUnitario, int idFactura)
        {
            Detalle detalle = new DetalleCompra(producto, nuevaCantidad, valorUnitario, idFactura);

            Detalles.Add(detalle);
        }