TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/ExcepcionesClasificacionSubsistencia.cs

30 lines
1.2 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("Catalogos.ExcepcionesClasificacionSubsistencia")]
public partial class ExcepcionesClasificacionSubsistencia
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public ExcepcionesClasificacionSubsistencia()
{
CaratulaCreditoExcepcionesPolitica = new HashSet<CaratulaCreditoExcepcionesPolitica>();
}
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdClasificacionSubsistencia { get; set; }
[StringLength(200)]
public string Descripcion { get; set; }
public bool? Estado { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<CaratulaCreditoExcepcionesPolitica> CaratulaCreditoExcepcionesPolitica { get; set; }
}
}