importe funcional sin haber hecho pruebas exaustivas
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user