52 lines
2.0 KiB
C#
52 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepUzytkownik
|
|
{
|
|
public SklepUzytkownik()
|
|
{
|
|
SklepDoks = new HashSet<SklepDok>();
|
|
SklepGrupaUzSkleps = new HashSet<SklepGrupaUz>();
|
|
SklepPanels = new HashSet<SklepPanel>();
|
|
SklepPowiazanieUzs = new HashSet<SklepPowiazanieUz>();
|
|
SklepUprawnienies = new HashSet<SklepUprawnienie>();
|
|
SklepZdarzOs = new HashSet<SklepZdarzO>();
|
|
UzNaSkleps = new HashSet<UzNaSklep>();
|
|
}
|
|
|
|
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<SklepDok> SklepDoks { get; set; }
|
|
public virtual ICollection<SklepGrupaUz> SklepGrupaUzSkleps { get; set; }
|
|
public virtual ICollection<SklepPanel> SklepPanels { get; set; }
|
|
public virtual ICollection<SklepPowiazanieUz> SklepPowiazanieUzs { get; set; }
|
|
public virtual ICollection<SklepUprawnienie> SklepUprawnienies { get; set; }
|
|
public virtual ICollection<SklepZdarzO> SklepZdarzOs { get; set; }
|
|
public virtual ICollection<UzNaSklep> UzNaSkleps { get; set; }
|
|
} |