25 lines
615 B
C#
25 lines
615 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace compabetov2.database.modelos
|
|
{
|
|
public class DetalleImporte
|
|
{
|
|
public int fkImporte;
|
|
public int cantidad;
|
|
public decimal precioImporte;
|
|
public int fkVenta;
|
|
|
|
public DetalleImporte(int fkImporte, int cantidad, decimal precioImporte, int fkVenta = -1)
|
|
{
|
|
this.fkImporte = fkImporte;
|
|
this.cantidad = cantidad;
|
|
this.precioImporte = precioImporte;
|
|
this.fkVenta = fkVenta;
|
|
}
|
|
}
|
|
}
|