Versión 2
This commit is contained in:
99
bdGrupoSanchoToro/db/trabajadores.cs
Normal file
99
bdGrupoSanchoToro/db/trabajadores.cs
Normal file
@@ -0,0 +1,99 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class trabajadores
|
||||
{
|
||||
public int idTrabajador { get; set; }
|
||||
|
||||
public string? CIF { get; set; }
|
||||
|
||||
public string? Nombre { get; set; }
|
||||
|
||||
public string? Apellidos { get; set; }
|
||||
|
||||
public int? idEmpresa { get; set; }
|
||||
|
||||
public int? idPuestoTrabajo { get; set; }
|
||||
|
||||
public int? idSeccion { get; set; }
|
||||
|
||||
public string? NumeroSeguridadSocial { get; set; }
|
||||
|
||||
public string? Login { get; set; }
|
||||
|
||||
public string? Iniciales { get; set; }
|
||||
|
||||
public DateOnly? FechaAntiguedad { get; set; }
|
||||
|
||||
public DateOnly? FechaAlta { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public int? idCausaBaja { get; set; }
|
||||
|
||||
public string? Domicilio { get; set; }
|
||||
|
||||
public int? idCodigoPostal { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Telefono2 { get; set; }
|
||||
|
||||
public string? Fax { get; set; }
|
||||
|
||||
public string? CorreoElectronico { get; set; }
|
||||
|
||||
public bool AutorizacionVistoBuenoRespOfertaCliente { get; set; }
|
||||
|
||||
public bool AutorizacionVistoBuenoRespPedidoCliente { get; set; }
|
||||
|
||||
public bool AutorizacionRecepcionDocumentos { get; set; }
|
||||
|
||||
public bool AutorizacionRealizacionProyecto { get; set; }
|
||||
|
||||
public bool AutorizacionAprobacionRiesgo { get; set; }
|
||||
|
||||
public bool AutorizacionNotificacion { get; set; }
|
||||
|
||||
public bool AutorizacionVistoBuenoFacturaCliente { get; set; }
|
||||
|
||||
public bool AutorizacionPedidosAProveedores { get; set; }
|
||||
|
||||
public int? idFormaPago { get; set; }
|
||||
|
||||
public string? IBAN { get; set; }
|
||||
|
||||
public int? idCuentaContable { get; set; }
|
||||
|
||||
public double? Precios { get; set; }
|
||||
|
||||
public string? Situacion { get; set; }
|
||||
|
||||
public string? Observacion { get; set; }
|
||||
|
||||
public int? idCategoriaPrevia { get; set; }
|
||||
|
||||
public bool? RequiereFormato { get; set; }
|
||||
|
||||
public int? idCategoriaCalidad { get; set; }
|
||||
|
||||
public DateOnly? FechaNacimiento { get; set; }
|
||||
|
||||
public DateOnly? FechaRevisionMedicaVigente { get; set; }
|
||||
|
||||
public DateOnly? FechaRevisionMedicaProximo { get; set; }
|
||||
|
||||
public bool NivelBasico { get; set; }
|
||||
|
||||
public bool Altura { get; set; }
|
||||
|
||||
public bool ProtocoloMontaje { get; set; }
|
||||
|
||||
public bool Carretilla { get; set; }
|
||||
|
||||
public bool PrimerosAuxilios { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user