67 lines
2.4 KiB
C#
67 lines
2.4 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("Catalogos.Ejecutivo")]
|
|
public partial class Ejecutivo
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Ejecutivo()
|
|
{
|
|
Cliente = new HashSet<Cliente>();
|
|
Oferta = new HashSet<Oferta>();
|
|
EjecutivoAsistente = new HashSet<EjecutivoAsistente>();
|
|
DetalleRequisitos = new HashSet<DetalleRequisitos>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdEjecutivo { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Nombre { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Correo { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioCreador { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioModificado { get; set; }
|
|
|
|
public DateTime? FechaModificacion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string UserId { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CodigoEjecutivo { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string FormalizadorAsignado_UserID { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string FormalizadorAsignado_FullName { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Cliente> Cliente { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Oferta> Oferta { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<EjecutivoAsistente> EjecutivoAsistente { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DetalleRequisitos> DetalleRequisitos { get; set; }
|
|
}
|
|
}
|