using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class v_act_entidades { public int idRegistro { get; set; } 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; } }