importe en venta hecho

This commit is contained in:
carlos
2024-06-09 16:55:52 -06:00
parent 91d1661d9a
commit 7569ef0f5a
27 changed files with 987 additions and 74 deletions
+22
View File
@@ -0,0 +1,22 @@
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;
}
}
}