using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SklepKontr { public SklepKontr() { SklepDokDodKths = new HashSet(); SklepDokSklep1s = new HashSet(); SklepDokSklep3s = new HashSet(); SklepDosts = new HashSet(); SklepKontoBankoweKontrs = new HashSet(); SklepKontoLojs = new HashSet(); SklepKontrOpis = new HashSet(); SklepKthTypOs = new HashSet(); SklepNrRejs = new HashSet(); SklepTowars = new HashSet(); SklepZdarzOs = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepKontrId { get; set; } public decimal? KontrId { get; set; } public string Nazwa { get; set; } public string NaPrzelewie1 { get; set; } public string NaPrzelewie2 { get; set; } public string Skrot { get; set; } public string Ulica { get; set; } public string Kod { get; set; } public string Miasto { get; set; } public string Telefon { get; set; } public string Fax { get; set; } public string Email { get; set; } public string Bank { get; set; } public string Konto { get; set; } public string Nip { get; set; } public short Staly { get; set; } public short Dostawca { get; set; } public decimal RabatDost { get; set; } public short FormaPlatDost { get; set; } public short TermPlatDost { get; set; } public short CzasRealZam { get; set; } public short Producent { get; set; } public short Odbiorca { get; set; } public decimal RabatOdb { get; set; } public short FormaPlatOdb { get; set; } public short TermPlatOdb { get; set; } public decimal MaxKredyt { get; set; } public short MaxPoTermPlat { get; set; } public string KodKarty { get; set; } public short KartaAktywna { get; set; } public DateTime TermWaznKarty { get; set; } public short PoziomRabatu { get; set; } public string NrAnalityki { get; set; } public string KodKontr { get; set; } public short ZakPracChron { get; set; } public short Aktywny { get; set; } public string Rezerwa1 { get; set; } public string Rezerwa2 { get; set; } public string Akwizytor { get; set; } public decimal? Prowizja { get; set; } public decimal? CentrKontrId { get; set; } public DateTime Zmiana { get; set; } public string IndeksCentr { get; set; } public string KodKraju { get; set; } public string Poczta { get; set; } public string NrDomu { get; set; } public string NrLokalu { get; set; } public short? Osoba { get; set; } public virtual Kontrahent Kontr { get; set; } public virtual Sklep Sklep { get; set; } public virtual ICollection SklepDokDodKths { get; set; } public virtual ICollection SklepDokSklep1s { get; set; } public virtual ICollection SklepDokSklep3s { get; set; } public virtual ICollection SklepDosts { get; set; } public virtual ICollection SklepKontoBankoweKontrs { get; set; } public virtual ICollection SklepKontoLojs { get; set; } public virtual ICollection SklepKontrOpis { get; set; } public virtual ICollection SklepKthTypOs { get; set; } public virtual ICollection SklepNrRejs { get; set; } public virtual ICollection SklepTowars { get; set; } public virtual ICollection SklepZdarzOs { get; set; } }