namespace Pcm.Db.Entities; public class KontoLoj { public KontoLoj() { KartaLojs = new HashSet(); PowKontLojNoweKontos = new HashSet(); PowKontLojStareKontos = new HashSet(); RegulaDoks = new HashSet(); RegulaPars = new HashSet(); SklepKontoLojs = new HashSet(); SklepRegulaDoks = new HashSet(); SklepRegulaPars = new HashSet(); ZdarzLojs = new HashSet(); } 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 Kontrahent Kontr { get; set; } public virtual ICollection KartaLojs { get; set; } public virtual ICollection PowKontLojNoweKontos { get; set; } public virtual ICollection PowKontLojStareKontos { get; set; } public virtual ICollection RegulaDoks { get; set; } public virtual ICollection RegulaPars { get; set; } public virtual ICollection SklepKontoLojs { get; set; } public virtual ICollection SklepRegulaDoks { get; set; } public virtual ICollection SklepRegulaPars { get; set; } public virtual ICollection ZdarzLojs { get; set; } }