43 lines
1.3 KiB
C#
43 lines
1.3 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.IngresoRequerido")]
|
|
public partial class IngresoRequerido
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdIngresoRequerido { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(5)]
|
|
public string IdFuenteIngreso { get; set; }
|
|
|
|
public int IdMoneda { get; set; }
|
|
|
|
public int IdProgramaCrediticio { get; set; }
|
|
|
|
public int IdProgramaCrediticioCondiciones { get; set; }
|
|
|
|
public decimal PorcMultiplicadorCol { get; set; }
|
|
|
|
public decimal PorcMultiplicadorDol { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal IngresoMinColones { get; set; }
|
|
|
|
public bool Estado { get; set; }
|
|
|
|
public virtual TipoFuenteIngreso TipoFuenteIngreso { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual ProgramaCrediticio ProgramaCrediticio { get; set; }
|
|
|
|
public virtual ProgramaCrediticioCondiciones ProgramaCrediticioCondiciones { get; set; }
|
|
}
|
|
}
|