23 lines
531 B
C#
23 lines
531 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 catidad;
|
|
public decimal precioImporte;
|
|
|
|
public DetalleImporte(int fkImporte, int cantidad, decimal precioImporte)
|
|
{
|
|
this.fkImporte = fkImporte;
|
|
this.catidad = cantidad;
|
|
this.precioImporte = precioImporte;
|
|
}
|
|
}
|
|
}
|