26 lines
604 B
C#
26 lines
604 B
C#
using compabetov2.Ventas;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace compabetov2.database.modelos
|
|
{
|
|
internal class ImporteModel
|
|
{
|
|
public int idImporte;
|
|
|
|
public string tipo;
|
|
public decimal precioImporte;
|
|
public string img;
|
|
|
|
public ImporteModel(int idImporte, string tipo, decimal precioImporte, string img) {
|
|
this.idImporte = idImporte;
|
|
this.tipo = tipo;
|
|
this.img = img;
|
|
this.precioImporte = precioImporte;
|
|
}
|
|
}
|
|
}
|