37 lines
996 B
C#
37 lines
996 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("Corporativo.Contacto")]
|
||
|
|
public partial class Contacto
|
||
|
|
{
|
||
|
|
[Key]
|
||
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
|
public int IdContacto { get; set; }
|
||
|
|
|
||
|
|
public int? IdSolicitud { get; set; }
|
||
|
|
|
||
|
|
public int? IdTipoFacilidad { get; set; }
|
||
|
|
|
||
|
|
public int? Secuencia { 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 VerificacionFacturasContratosOrdenes VerificacionFacturasContratosOrdenes { get; set; }
|
||
|
|
}
|
||
|
|
}
|