using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace compabetov2.database.modelos { public class Envio { public int id; public string fecha; 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,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; } } }