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 { get; set; } = new List(); public virtual ICollection entidades_tokens { get; set; } = new List(); public virtual ICollection entidadespolizas { get; set; } = new List(); public virtual ICollection entidadesrelacionadasidEntidadHijoNavigation { get; set; } = new List(); public virtual ICollection entidadesrelacionadasidEntidadPadreNavigation { get; set; } = new List(); public virtual direcciones? idDireccionPrincipalNavigation { get; set; } public virtual enumeraciones? idSexoNavigation { get; set; } public virtual enumeraciones? idTipoPagoNavigation { get; set; } public virtual ICollection personasdecontactoentidades { get; set; } = new List(); public virtual ICollection polizasagrarioidAseguradoNavigation { get; set; } = new List(); public virtual ICollection polizasagrarioidTomadorNavigation { get; set; } = new List(); public virtual ICollection siniestrosidEntidadContrarioNavigation { get; set; } = new List(); public virtual ICollection siniestrosidEntidadTallerNavigation { get; set; } = new List(); }