92 lines
2.8 KiB
C#
92 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class entidades
|
|
{
|
|
public int idEntidad { get; set; }
|
|
|
|
public string? CIF { get; set; }
|
|
|
|
public string? RazonSocial { get; set; }
|
|
|
|
public string? Apellidos { get; set; }
|
|
|
|
public string? Nombre { get; set; }
|
|
|
|
public string? Telefono1 { get; set; }
|
|
|
|
public string? Telefono2 { get; set; }
|
|
|
|
public string? AfiliacionSeguridadSocial { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? IBAN { get; set; }
|
|
|
|
public int? idSexo { get; set; }
|
|
|
|
public DateOnly? FechaNacimiento { get; set; }
|
|
|
|
public DateOnly? FechaExpedicionCarnet { get; set; }
|
|
|
|
public int? idTipoPago { get; set; }
|
|
|
|
public string? CuentaContable { get; set; }
|
|
|
|
public bool VIP { get; set; }
|
|
|
|
public string? Situacion { get; set; }
|
|
|
|
public string? Observacion { get; set; }
|
|
|
|
public bool EsClienteSG { get; set; }
|
|
|
|
public bool EsTaller { get; set; }
|
|
|
|
public bool EsContrarioSiniestro { get; set; }
|
|
|
|
public int? idDireccionPrincipal { get; set; }
|
|
|
|
public string? EstadoCivil { get; set; }
|
|
|
|
public bool EsClienteSA { get; set; }
|
|
|
|
public bool EsProveedor { get; set; }
|
|
|
|
public string? SHA1Passwd { get; set; }
|
|
|
|
public DateTime? FechaAltaServiciosWeb { get; set; }
|
|
|
|
public string? Avisos { get; set; }
|
|
|
|
public virtual ICollection<direcciones> direcciones { get; set; } = new List<direcciones>();
|
|
|
|
public virtual ICollection<entidades_tokens> entidades_tokens { get; set; } = new List<entidades_tokens>();
|
|
|
|
public virtual ICollection<entidadespolizas> entidadespolizas { get; set; } = new List<entidadespolizas>();
|
|
|
|
public virtual ICollection<entidadesrelacionadas> entidadesrelacionadasidEntidadHijoNavigation { get; set; } = new List<entidadesrelacionadas>();
|
|
|
|
public virtual ICollection<entidadesrelacionadas> entidadesrelacionadasidEntidadPadreNavigation { get; set; } = new List<entidadesrelacionadas>();
|
|
|
|
public virtual direcciones? idDireccionPrincipalNavigation { get; set; }
|
|
|
|
public virtual enumeraciones? idSexoNavigation { get; set; }
|
|
|
|
public virtual enumeraciones? idTipoPagoNavigation { get; set; }
|
|
|
|
public virtual ICollection<personasdecontactoentidades> personasdecontactoentidades { get; set; } = new List<personasdecontactoentidades>();
|
|
|
|
public virtual ICollection<polizasagrario> polizasagrarioidAseguradoNavigation { get; set; } = new List<polizasagrario>();
|
|
|
|
public virtual ICollection<polizasagrario> polizasagrarioidTomadorNavigation { get; set; } = new List<polizasagrario>();
|
|
|
|
public virtual ICollection<siniestros> siniestrosidEntidadContrarioNavigation { get; set; } = new List<siniestros>();
|
|
|
|
public virtual ICollection<siniestros> siniestrosidEntidadTallerNavigation { get; set; } = new List<siniestros>();
|
|
}
|