35 lines
1.4 KiB
C#
35 lines
1.4 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("Catalogos.PeriodoReajuste")]
|
|
public partial class PeriodoReajuste
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public PeriodoReajuste()
|
|
{
|
|
CondicionesTasaCotizacion = new HashSet<CondicionesTasaCotizacion>();
|
|
ProgramaCrediticioCondicionesTasa = new HashSet<ProgramaCrediticioCondicionesTasa>();
|
|
}
|
|
|
|
[Key]
|
|
[StringLength(2)]
|
|
public string IdPeriodoReajuste { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public bool Estado { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CondicionesTasaCotizacion> CondicionesTasaCotizacion { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ProgramaCrediticioCondicionesTasa> ProgramaCrediticioCondicionesTasa { get; set; }
|
|
}
|
|
}
|