Primera versión estable compatible con linux de WSAsegasa

This commit is contained in:
2025-11-20 16:34:14 +01:00
parent 68ab86be9e
commit 574a139e78
209 changed files with 19093 additions and 16 deletions

View File

@@ -0,0 +1,61 @@
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; }
}