Files
compabetoOG/database/modelos/VentaModel.cs
T
2024-01-28 22:51:04 -06:00

24 lines
569 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace compabetov2.database.modelos
{
public class VentaModel
{
public int id;
public string fecha;
public decimal total;
public string responzable;
public VentaModel(decimal total = 0, int id = -1, string fecha = "", string responzable = "") {
this.id = id;
this.fecha = fecha;
this.total = total;
this.responzable = responzable;
}
}
}