importe funcional sin haber hecho pruebas exaustivas

This commit is contained in:
carlos
2024-06-11 20:46:33 -06:00
25 changed files with 462 additions and 125 deletions
+5 -3
View File
@@ -9,14 +9,16 @@ namespace compabetov2.database.modelos
public class DetalleImporte
{
public int fkImporte;
public int catidad;
public int cantidad;
public decimal precioImporte;
public int fkVenta;
public DetalleImporte(int fkImporte, int cantidad, decimal precioImporte)
public DetalleImporte(int fkImporte, int cantidad, decimal precioImporte, int fkVenta = -1)
{
this.fkImporte = fkImporte;
this.catidad = cantidad;
this.cantidad = cantidad;
this.precioImporte = precioImporte;
this.fkVenta = fkVenta;
}
}
}
+24
View File
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace compabetov2.database.modelos
{
public class DetalleImporteCuenta
{
public int fkImporte;
public int cantidad;
public decimal precioImporte;
public int fkCuenta;
public DetalleImporteCuenta(int fkImporte, int cantidad, decimal precioImporte, int fkCuenta = -1)
{
this.fkImporte = fkImporte;
this.cantidad = cantidad;
this.precioImporte = precioImporte;
this.fkCuenta = fkCuenta;
}
}
}
+24
View File
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace compabetov2.database.modelos
{
public class DetalleImporteEnvio
{
public int fkImporte;
public int cantidad;
public decimal precioImporte;
public int fkEnvio;
public DetalleImporteEnvio(int fkImporte, int cantidad, decimal precioImporte, int fkEnvio = -1)
{
this.fkImporte = fkImporte;
this.cantidad = cantidad;
this.precioImporte = precioImporte;
this.fkEnvio = fkEnvio;
}
}
}