31 lines
838 B
C#
31 lines
838 B
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.EjecutivoAsistente")]
|
|
public partial class EjecutivoAsistente
|
|
{
|
|
[Key]
|
|
public int IdRelacion { get; set; }
|
|
|
|
public int IdEjecutivo { get; set; }
|
|
|
|
public int IdEjecutivoAsistente { 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; }
|
|
|
|
public virtual Ejecutivo Ejecutivo { get; set; }
|
|
}
|
|
}
|