TFS_ANTIGUO/PrendarioDavivienda/SlnDavivienda/ULA.Davivienda.PrendarioModel/Prendario/ParamCalculoNCP.cs

25 lines
671 B
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.ParamCalculoNCP")]
public partial class ParamCalculoNCP
{
[Key]
public int IdParamCalculoNCP { get; set; }
public decimal MinPorcEndeudamiento { get; set; }
public decimal MaxPorcEndeudamiento { get; set; }
[Required]
[StringLength(5)]
public string IdCapacidadPago { get; set; }
public bool Estado { get; set; }
}
}