29 lines
992 B
C#
29 lines
992 B
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("Aprobacion.EstadosCaratula")]
|
||
|
|
public partial class EstadosCaratula
|
||
|
|
{
|
||
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||
|
|
public EstadosCaratula()
|
||
|
|
{
|
||
|
|
CaratulaCredito = new HashSet<CaratulaCredito>();
|
||
|
|
}
|
||
|
|
|
||
|
|
[Key]
|
||
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
|
public int IdEstadoCaratula { get; set; }
|
||
|
|
|
||
|
|
[StringLength(100)]
|
||
|
|
public string Descripcion { get; set; }
|
||
|
|
|
||
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||
|
|
public virtual ICollection<CaratulaCredito> CaratulaCredito { get; set; }
|
||
|
|
}
|
||
|
|
}
|