crea venta pero no imprime

This commit is contained in:
carlos
2024-01-17 23:03:46 -06:00
parent fc664fccb6
commit a438eb1914
26 changed files with 481 additions and 125 deletions
+21
View File
@@ -0,0 +1,21 @@
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 VentaModel(decimal total = 0, int id = -1, string fecha = "") {
this.id = id;
this.fecha = fecha;
this.total = total;
}
}
}