130 lines
6.7 KiB
C#
130 lines
6.7 KiB
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Global.Solicitud")]
|
|
public partial class Solicitud
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Solicitud()
|
|
{
|
|
CondicionesFormalizacionSolicitud = new HashSet<CondicionesFormalizacionSolicitud>();
|
|
HistorialDecision = new HashSet<HistorialDecision>();
|
|
MotivoSolicitud = new HashSet<MotivoSolicitud>();
|
|
Solicitante = new HashSet<Solicitante>();
|
|
AnalisisEstabilidad = new HashSet<AnalisisEstabilidad>();
|
|
BeneficiarioSeguro = new HashSet<BeneficiarioSeguro>();
|
|
CuentasInternas = new HashSet<CuentasInternas>();
|
|
DataFaseII = new HashSet<DataFaseII>();
|
|
DataScoring = new HashSet<DataScoring>();
|
|
DataScoringDetalle = new HashSet<DataScoringDetalle>();
|
|
DatosAprobacion = new HashSet<DatosAprobacion>();
|
|
DocumentosPorSolicitud = new HashSet<DocumentosPorSolicitud>();
|
|
Garantia = new HashSet<Garantia>();
|
|
PosicionActivos = new HashSet<PosicionActivos>();
|
|
PosicionPasivos = new HashSet<PosicionPasivos>();
|
|
PosicionTarjetas = new HashSet<PosicionTarjetas>();
|
|
SensibilizacionSolicitud = new HashSet<SensibilizacionSolicitud>();
|
|
SituacionActual = new HashSet<SituacionActual>();
|
|
SituacionFinal = new HashSet<SituacionFinal>();
|
|
SituacionHistorica = new HashSet<SituacionHistorica>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
public int? Incidente { get; set; }
|
|
|
|
[StringLength(48)]
|
|
public string Proceso { get; set; }
|
|
|
|
public int? IdCotizacion { get; set; }
|
|
|
|
public bool? ConCodeudor { get; set; }
|
|
|
|
public bool? ConFiador { get; set; }
|
|
|
|
public int? IdSucursal { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TelSucursal { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string FaxSucursal { get; set; }
|
|
|
|
public int? IdPropositoCredito { get; set; }
|
|
|
|
public bool? AplicaIntegracionConCartera { get; set; }
|
|
|
|
public virtual PropositoCredito PropositoCredito { get; set; }
|
|
|
|
public virtual Sucursal Sucursal { get; set; }
|
|
|
|
public virtual Cotizacion Cotizacion { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CondicionesFormalizacionSolicitud> CondicionesFormalizacionSolicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<HistorialDecision> HistorialDecision { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<MotivoSolicitud> MotivoSolicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Solicitante> Solicitante { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<AnalisisEstabilidad> AnalisisEstabilidad { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BeneficiarioSeguro> BeneficiarioSeguro { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CuentasInternas> CuentasInternas { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DataFaseII> DataFaseII { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DataScoring> DataScoring { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DataScoringDetalle> DataScoringDetalle { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DatosAprobacion> DatosAprobacion { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DocumentosPorSolicitud> DocumentosPorSolicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Garantia> Garantia { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<PosicionActivos> PosicionActivos { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<PosicionPasivos> PosicionPasivos { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<PosicionTarjetas> PosicionTarjetas { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<SensibilizacionSolicitud> SensibilizacionSolicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<SituacionActual> SituacionActual { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<SituacionFinal> SituacionFinal { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<SituacionHistorica> SituacionHistorica { get; set; }
|
|
}
|
|
}
|