namespace Pcm.Db.Entities; public class SklepKontoLoj { public SklepKontoLoj() { SklepKartaLojs = new HashSet(); SklepPowKontLojSklepNavigations = new HashSet(); SklepPowKontLojSkleps = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepKontoId { get; set; } public decimal SklepKontrId { get; set; } public short TypKonta { get; set; } public short Aktywne { get; set; } public string Nazwa { get; set; } public decimal StanPocz { get; set; } public decimal Stan { get; set; } public DateTime ZmianaStanu { get; set; } public DateTime Zmiana { get; set; } public decimal? KontoId { get; set; } public decimal? CentrKontoId { get; set; } public virtual KontoLoj Konto { get; set; } public virtual Sklep Sklep { get; set; } public virtual SklepKontr SklepNavigation { get; set; } public virtual ICollection SklepKartaLojs { get; set; } public virtual ICollection SklepPowKontLojSklepNavigations { get; set; } public virtual ICollection SklepPowKontLojSkleps { get; set; } }