43 lines
1.2 KiB
C#
43 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("Cotizacion.CondicionesTasaCotizacion")]
|
|
public partial class CondicionesTasaCotizacion
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCondicionesTasaCotizacion { get; set; }
|
|
|
|
public int? IdCotizacion { get; set; }
|
|
|
|
public int? Periodo { get; set; }
|
|
|
|
public int? IdTipoTasa { get; set; }
|
|
|
|
public int? IdTipoTasaReferencia { get; set; }
|
|
|
|
public decimal? TasaReferencia { get; set; }
|
|
|
|
public int? PlazoMeses { get; set; }
|
|
|
|
public decimal? Spread { get; set; }
|
|
|
|
public decimal? TasaMinima { get; set; }
|
|
|
|
[StringLength(2)]
|
|
public string IdPeriodoReajuste { get; set; }
|
|
|
|
public virtual PeriodoReajuste PeriodoReajuste { get; set; }
|
|
|
|
public virtual TipoTasa TipoTasa { get; set; }
|
|
|
|
public virtual TipoTasaReferencia TipoTasaReferencia { get; set; }
|
|
|
|
public virtual Cotizacion Cotizacion { get; set; }
|
|
}
|
|
}
|