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.PermisoSBNBCCR")] public partial class PermisoSBNBCCR { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public PermisoSBNBCCR() { CaratulaCredito = new HashSet(); } [Key] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int CodigoPermisoSBNBCCR { get; set; } [Required] [StringLength(50)] public string DescPermisoSBNBCCR { get; set; } public bool Estado { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection CaratulaCredito { get; set; } } }