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