44 lines
1.2 KiB
C#
44 lines
1.2 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("Prendario.BeneficiarioSeguro")]
|
|
public partial class BeneficiarioSeguro
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdBeneficiarioSeguro { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? IdRubroSeguro { get; set; }
|
|
|
|
public int? IdTipoIdentificacion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Identificacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string NombreCompleto { get; set; }
|
|
|
|
public decimal? Porcentaje { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Parentesco { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Telefono { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string Direccion { get; set; }
|
|
|
|
public DateTime? FechaNacimiento { get; set; }
|
|
public virtual RubroSeguro RubroSeguro { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|