cuenta a la mitad
This commit is contained in:
@@ -11,13 +11,14 @@ namespace compabetov2.database.modelos
|
||||
public int idCuenta;
|
||||
public Producto producto;
|
||||
public int cantidad;
|
||||
public string nombreProducto;
|
||||
|
||||
|
||||
public DetalleCuentaModel(Producto producto, int cantidad, int idCuenta =-1)
|
||||
public DetalleCuentaModel(Producto producto, int cantidad, int idCuenta =-1, string nombreProducto = "")
|
||||
{
|
||||
this.idCuenta = idCuenta;
|
||||
this.producto = producto;
|
||||
this.cantidad = cantidad;
|
||||
this.nombreProducto = nombreProducto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user