estadisticas del mes
This commit is contained in:
@@ -8,7 +8,7 @@ namespace compabetov2.database.modelos
|
||||
{
|
||||
public class DetalleVentaModel
|
||||
{
|
||||
public int id;
|
||||
public int idVenta;
|
||||
public int cantidad;
|
||||
public Producto producto;
|
||||
|
||||
@@ -16,7 +16,7 @@ namespace compabetov2.database.modelos
|
||||
{
|
||||
this.cantidad = cantidad;
|
||||
this.producto = producto;
|
||||
this.id = id;
|
||||
this.idVenta = id;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user