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
+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;
}
}
}