30 lines
1 KiB
C#
30 lines
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.PuestoActual")]
|
|
public partial class PuestoActual
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public PuestoActual()
|
|
{
|
|
InformacionLaboralCliente = new HashSet<InformacionLaboralCliente>();
|
|
}
|
|
|
|
[Key]
|
|
[StringLength(5)]
|
|
public string IdPuestoActual { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<InformacionLaboralCliente> InformacionLaboralCliente { get; set; }
|
|
}
|
|
}
|