TFS_ANTIGUO/PrendarioDavivienda/SlnDavivienda/ULA.Davivienda.PrestamoAutos/Json/JsonFormaDesembolso.cs

41 lines
No EOL
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using ULA.Davivienda.PrendarioModel.Prendario;
namespace ULA.Davivienda.PrestamoAutos.Json
{
public class JsonFormaDesembolso
{
public List<JsonFormaDesembolsoDetalle> FormaDesembolsoList { get; set; }
public decimal? SegVida { get; set; }
public decimal? SegDesempleo { get; set; }
public decimal? SegAuto { get; set; }
public decimal? MontoComision { get; set; }
public decimal? MontoPrestamo { get; set; }
public decimal MontoDesembolso { get; set; }
public decimal MontoLiquidato { get; set; }
public decimal MontoPendiente { get; set; }
public int? IdAgenciaVehiculo { get; set; }
public int? IdMoneda { get; set; }
public JsonFormaDesembolso()
{
FormaDesembolsoList = new List<JsonFormaDesembolsoDetalle>();
SegVida = 0;
SegDesempleo = 0;
SegAuto = 0;
MontoComision = 0;
MontoPrestamo = 0;
MontoDesembolso = 0;
MontoLiquidato = 0;
MontoPendiente = 0;
}
}
public class JsonFormaDesembolsoDetalle : FormaDesembolso
{
public string DescSucursal { get; set; }
public string DescCuenta { get; set; }
}
}