Files
gpw_next/GPW.Data/DBModels/Dipendenti.cs
T
Samuele Locatelli 767efc219b Fix nomi modelli
2022-01-26 12:49:37 +01:00

63 lines
2.3 KiB
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace GPW.Data.DBModels
{
public partial class Dipendenti
{
#region Public Constructors
public Dipendenti()
{
//PeriodiLavs = new HashSet<PeriodiLav>();
//RegAttivita = new HashSet<RegAttivitum>();
//RegAttivitaEgals = new HashSet<RegAttivitaEgal>();
//RilievoTemps = new HashSet<RilievoTemp>();
TimbratureNav = new HashSet<Timbrature>();
}
#endregion Public Constructors
#region Public Properties
public bool? Attivo { get; set; }
public string AuthKey { get; set; }
public string Cf { get; set; }
public string CodDipendenteExt { get; set; }
public string CodHw { get; set; }
public string CodOrario { get; set; }
public virtual AnagOrari CodOrarioNavigation { get; set; }
public string Cognome { get; set; }
public DateTime? DataAssunzione { get; set; }
public DateTime? DataCessazione { get; set; }
public DateTime? DataNascita { get; set; }
public string Dominio { get; set; }
public string Email { get; set; }
public string Gruppo { get; set; }
public virtual AnagGruppi GruppoNavigation { get; set; }
public int IdxDipendente { get; set; }
public string LuogoNascita { get; set; }
public bool? MailDay { get; set; }
public bool? MailLastOp { get; set; }
public bool? MailMonth { get; set; }
public bool? MailWeek { get; set; }
public string Matricola { get; set; }
public string NazNascita { get; set; }
public string Nome { get; set; }
public int? NumAuth { get; set; }
public string ProvNascita { get; set; }
//public virtual ICollection<PeriodiLav> PeriodiLavs { get; set; }
//public virtual ICollection<RegAttivitum> RegAttivita { get; set; }
//public virtual ICollection<RegAttivitaEgal> RegAttivitaEgals { get; set; }
//public virtual ICollection<RilievoTemp> RilievoTemps { get; set; }
public virtual ICollection<Timbrature> TimbratureNav { get; set; }
public string Utente { get; set; }
public string WolMac { get; set; }
#endregion Public Properties
}
}