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

34 lines
1.1 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.Etapas")]
public partial class Etapas
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Etapas()
{
HistorialDecision = new HashSet<HistorialDecision>();
}
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdEtapa { get; set; }
public int IdProceso { get; set; }
[StringLength(250)]
public string DescripcionEtapa { get; set; }
public bool? Estado { get; set; }
public virtual Procesos Procesos { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<HistorialDecision> HistorialDecision { get; set; }
}
}