TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/TelefonoCliente.cs

44 lines
1.2 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("Global.TelefonoCliente")]
public partial class TelefonoCliente
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdTelefono { get; set; }
public int IdCliente { get; set; }
[StringLength(3)]
public string IdTipoTelefono { get; set; }
[StringLength(10)]
public string CodigoArea { get; set; }
[StringLength(50)]
public string Telefono { get; set; }
[StringLength(10)]
public string Extension { 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 TipoTelefono TipoTelefono { get; set; }
public virtual Cliente Cliente { get; set; }
}
}