24 lines
524 B
C#
24 lines
524 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 Producto producto;
|
|
public int cantidad;
|
|
|
|
|
|
public DetalleCuentaModel(Producto producto, int cantidad, int idCuenta =-1)
|
|
{
|
|
this.idCuenta = idCuenta;
|
|
this.producto = producto;
|
|
this.cantidad = cantidad;
|
|
}
|
|
}
|
|
}
|