DRAB/Pcm.Db/Entities/SklepKontoLoj.cs
2025-07-11 10:50:46 +02:00

31 lines
1.2 KiB
C#

namespace Pcm.Db.Entities;
public class SklepKontoLoj
{
public SklepKontoLoj()
{
SklepKartaLojs = new HashSet<SklepKartaLoj>();
SklepPowKontLojSklepNavigations = new HashSet<SklepPowKontLoj>();
SklepPowKontLojSkleps = new HashSet<SklepPowKontLoj>();
}
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<SklepKartaLoj> SklepKartaLojs { get; set; }
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepNavigations { get; set; }
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSkleps { get; set; }
}