34 lines
928 B
C#
34 lines
928 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("Desembolso.ContactoDE")]
|
|
public partial class ContactoDE
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdContacto { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? IdTipoFacilidad { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string NombreContacto { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string Telefono { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string fax { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Departamento { get; set; }
|
|
|
|
public virtual VerificacionCondiciones VerificacionCondiciones { get; set; }
|
|
}
|
|
}
|