Files
compabetoOG/database/modelos/DetalleVentaModel.cs
T
2024-02-02 21:30:00 -07:00

25 lines
589 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace compabetov2.database.modelos
{
public class DetalleVentaModel
{
public int idVenta;
public int cantidad;
public Producto producto;
public decimal total;
public DetalleVentaModel(int cantidad, Producto producto, int id = -1, decimal total = 0)
{
this.cantidad = cantidad;
this.producto = producto;
this.idVenta = id;
this.total = total;
}
}
}