falta interfaz venta

This commit is contained in:
2025-01-24 21:31:37 -03:00
parent f8692ccdf0
commit 2b481e2ae2
13 changed files with 457 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Entidades.Dto;
public class OpcionVentaDto{
public long Id { get; set;}
public decimal Monto { get; set;}
public string Divisa { get; set;} ="";
public bool EnOrden { get; set;}
public bool FueEjercido { get; set; }
}
+2
View File
@@ -8,4 +8,6 @@ public class PrecontratoDto {
public bool TieneOpcionVenta { get; set; }
public string fechaprimernotificacion { get; set; } = "";
public int MesesDuracionContrato { get; set; }
public Decimal MontoOpcion {get; set; }
public int iddivisa { get; set; }
}