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

38 lines
No EOL
1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using ULA.Davivienda.PrestamoAutos.Commons;
namespace ULA.Davivienda.PrestamoAutos.Json
{
public class JsonEnviarInforma : JsonEnviarCotizacion
{
public int IdSolicitud { get; set; }
public bool EnviarNotificacionAprobacionCliente { get; set; }
public bool EnviarNotificacionAprobacionVendedor { get; set; }
public int TipoCambio { get; set; }
public int TipoCliente { get; set; }
public int IdAseguradora { get; set; }
}
public class JsonGenerarBoletaRequest
{
public string UserId { get; set; }
public string ClientName { get; set; }
}
public class JsonGenerarBoletaResponse : JsonResponseBase
{
public string UrlBoletaOperacionesDesembolso { get; set; }
public string UrlBoletaSeguros { get; set; }
public int NumeroBoletaOperacionesDesembolso { get; set; }
public int NumeroBoletaSeguros { get; set; }
}
}