cuenta a la mitad

This commit is contained in:
carlos
2024-01-22 02:50:41 -06:00
parent 068491d22e
commit 9f07542364
12 changed files with 199 additions and 137 deletions
+3 -1
View File
@@ -14,13 +14,15 @@ namespace compabetov2.database.modelos
public string fecha;
public string estado;
public string descripcion;
public string cliente;
public Cuenta(decimal total = 0, string fecha = "", string estado = "", string descripcion = "", int id = -1) {
public Cuenta(decimal total = 0, string fecha = "", string estado = "", string descripcion = "", string cliente = "",int id = -1) {
this.id = id;
this.total = total;
this.fecha = fecha;
this.estado = estado;
this.descripcion = descripcion;
this.cliente = cliente;
}
}
}