TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/ParametrosGlobalesProceso.cs

44 lines
1.6 KiB
C#

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("FRCondiciones.ParametrosGlobalesProceso")]
public partial class ParametrosGlobalesProceso
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public ParametrosGlobalesProceso()
{
FiltroParametrosGlobalesMaestro = new HashSet<FiltroParametrosGlobalesMaestro>();
}
[Key]
[Column(Order = 0)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int CodProceso { get; set; }
[Key]
[Column(Order = 1)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int CodEvaluacion { get; set; }
[Key]
[Column(Order = 2)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int CodParametro { get; set; }
public bool? Habilitado { get; set; }
public virtual Procesos Procesos { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<FiltroParametrosGlobalesMaestro> FiltroParametrosGlobalesMaestro { get; set; }
public virtual TipoEvaluacionCondiciones TipoEvaluacionCondiciones { get; set; }
public virtual TipoParametrosCondiciones TipoParametrosCondiciones { get; set; }
}
}