parte visual envios

This commit is contained in:
carlos
2024-01-23 17:44:38 -06:00
parent da855a6c85
commit 2b2624fb41
11 changed files with 183 additions and 12 deletions
+7 -1
View File
@@ -13,13 +13,19 @@ namespace compabetov2.database.modelos
public string direccion;
public string telefono;
public string responsable;
public string estado;
public string cliente;
public decimal total;
public Envio(int id, string fecha, string direccion, string telefono, string responsable) {
public Envio(int id, string fecha, string direccion, string telefono, string responsable,string estado,string cliente, decimal total) {
this.id = id;
this.fecha = fecha;
this.direccion = direccion;
this.telefono = telefono;
this.responsable = responsable;
this.estado = estado;
this.cliente = cliente;
this.total = total;
}
}
}