69 lines
1.5 KiB
C#
69 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class v_tomadores
|
|
{
|
|
/// <summary>
|
|
/// tabla polizas
|
|
/// </summary>
|
|
public int idPoliza { get; set; }
|
|
|
|
public string? Telefono1 { get; set; }
|
|
|
|
public string? Telefono2 { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? Direccion { get; set; }
|
|
|
|
public string? CodigoPostal { get; set; }
|
|
|
|
public string? Poblacion { get; set; }
|
|
|
|
public string? Provincia { 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? AfiliacionSeguridadSocial { 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; }
|
|
}
|