25 lines
639 B
C#
25 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace compabetov2.database.modelos
|
|
{
|
|
public class DetalleCuentaModel
|
|
{
|
|
public int idCuenta;
|
|
public Variante producto;
|
|
public int cantidad;
|
|
public string nombreProducto;
|
|
|
|
public DetalleCuentaModel(Variante producto, int cantidad, int idCuenta =-1, string nombreProducto = "")
|
|
{
|
|
this.idCuenta = idCuenta;
|
|
this.producto = producto;
|
|
this.cantidad = cantidad;
|
|
this.nombreProducto = nombreProducto;
|
|
}
|
|
}
|
|
}
|