58 lines
1.6 KiB
C#
58 lines
1.6 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Global.ParticipantesLegalesAdicionales")]
|
|
public partial class ParticipantesLegalesAdicionales
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(10)]
|
|
public string CodigoBP { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdTipoRol { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(60)]
|
|
public string Identificacion { get; set; }
|
|
|
|
public int? Tipo_Identificacion { get; set; }
|
|
|
|
[Required]
|
|
public string Nombre { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Posicion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Calidades { get; set; }
|
|
|
|
public DateTime? Fecha { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string EstadoCivil_Repre { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string Profesion_Repre { get; set; }
|
|
|
|
public string Domicilio_Repre { get; set; }
|
|
|
|
public string Descripcion_Representante { get; set; }
|
|
|
|
public virtual TipoRolCredito TipoRolCredito { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|