envios a medio terminar
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace compabetov2.database.modelos
|
||||
{
|
||||
public class DetalleEnvioModel
|
||||
{
|
||||
public int idEnvio;
|
||||
public Producto producto;
|
||||
public int cantidad;
|
||||
|
||||
public DetalleEnvioModel(int idEnvio, Producto producto, int cantidad)
|
||||
{
|
||||
this.idEnvio = idEnvio;
|
||||
this.producto = producto;
|
||||
this.cantidad = cantidad;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
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 Envio(int id, string fecha, string direccion, string telefono, string responsable) {
|
||||
this.id = id;
|
||||
this.fecha = fecha;
|
||||
this.direccion = direccion;
|
||||
this.telefono = telefono;
|
||||
this.responsable = responsable;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user