namespace Pcm.Db.Entities; public class SklepUzytkownik { public SklepUzytkownik() { SklepDoks = new HashSet(); SklepGrupaUzSkleps = new HashSet(); SklepPanels = new HashSet(); SklepPowiazanieUzs = new HashSet(); SklepUprawnienies = new HashSet(); SklepZdarzOs = new HashSet(); UzNaSkleps = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepUzId { get; set; } public string Identyfikator { get; set; } public string Nazwisko { get; set; } public short Aktywny { get; set; } public short NrKasjera { get; set; } public short? Rola { get; set; } public string KodKasjera { get; set; } public short? NrSzuflady { get; set; } public decimal? SklepProfilId { get; set; } public decimal? UzId { get; set; } public short? Opiekun { get; set; } public DateTime? OstZmianaHasla { get; set; } public string Jezyk { get; set; } public string IdentPrepaid { get; set; } public string HasloPrepaid { get; set; } public DateTime? Zmiana { get; set; } public short? RolaKasjera { get; set; } public string Haslo { get; set; } public virtual Sklep Sklep { get; set; } public virtual SklepProfil SklepNavigation { get; set; } public virtual Uzytkownik Uz { get; set; } public virtual SklepGrupaUz SklepGrupaUzSklepNavigation { get; set; } public virtual ICollection SklepDoks { get; set; } public virtual ICollection SklepGrupaUzSkleps { get; set; } public virtual ICollection SklepPanels { get; set; } public virtual ICollection SklepPowiazanieUzs { get; set; } public virtual ICollection SklepUprawnienies { get; set; } public virtual ICollection SklepZdarzOs { get; set; } public virtual ICollection UzNaSkleps { get; set; } }