estadisticas del mes

This commit is contained in:
carlos
2024-01-28 22:51:04 -06:00
parent ccbdc1d323
commit c81f56bf7b
22 changed files with 592 additions and 68 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ namespace compabetov2.database.modelos
{
public class DetalleVentaModel
{
public int id;
public int idVenta;
public int cantidad;
public Producto producto;
@@ -16,7 +16,7 @@ namespace compabetov2.database.modelos
{
this.cantidad = cantidad;
this.producto = producto;
this.id = id;
this.idVenta = id;
}
}
}
+3 -1
View File
@@ -11,11 +11,13 @@ namespace compabetov2.database.modelos
public int id;
public string fecha;
public decimal total;
public string responzable;
public VentaModel(decimal total = 0, int id = -1, string fecha = "") {
public VentaModel(decimal total = 0, int id = -1, string fecha = "", string responzable = "") {
this.id = id;
this.fecha = fecha;
this.total = total;
this.responzable = responzable;
}
}
}