namespace DuSoft.PcmDb.Entities; public partial class KontoLoj { public decimal KontoId { get; set; } public decimal KontrId { 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? CentrKontoId { get; set; } public virtual ICollection KartaLoj { get; set; } = new List(); public virtual Kontrahent Kontr { get; set; } = null!; public virtual ICollection PowKontLojNoweKonto { get; set; } = new List(); public virtual ICollection PowKontLojStareKonto { get; set; } = new List(); public virtual ICollection RegulaDok { get; set; } = new List(); public virtual ICollection RegulaPar { get; set; } = new List(); public virtual ICollection SklepKontoLoj { get; set; } = new List(); public virtual ICollection SklepRegulaDok { get; set; } = new List(); public virtual ICollection SklepRegulaPar { get; set; } = new List(); public virtual ICollection ZdarzLoj { get; set; } = new List(); }