39 lines
1.1 KiB
C#
39 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("Cotizacion.EjecutivoCotizacion")]
|
|
public partial class EjecutivoCotizacion
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCotizacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string NombreEjecutivo { get; set; }
|
|
|
|
[StringLength(15)]
|
|
public string CodOficial { get; set; }
|
|
|
|
[StringLength(15)]
|
|
public string LoginEjecutivo { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Telefono { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Email { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string EjecutivoAgenciaEmail { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string EjecutivoAgenciaNombre { get; set; }
|
|
|
|
public virtual Cotizacion Cotizacion { get; set; }
|
|
}
|
|
}
|