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

83 lines
3.5 KiB
C#

namespace Pcm.Db.Entities;
public class SklepKontr
{
public SklepKontr()
{
SklepDokDodKths = new HashSet<SklepDokDodKth>();
SklepDokSklep1s = new HashSet<SklepDok>();
SklepDokSklep3s = new HashSet<SklepDok>();
SklepDosts = new HashSet<SklepDost>();
SklepKontoBankoweKontrs = new HashSet<SklepKontoBankoweKontr>();
SklepKontoLojs = new HashSet<SklepKontoLoj>();
SklepKontrOpis = new HashSet<SklepKontrOpi>();
SklepKthTypOs = new HashSet<SklepKthTypO>();
SklepNrRejs = new HashSet<SklepNrRej>();
SklepTowars = new HashSet<SklepTowar>();
SklepZdarzOs = new HashSet<SklepZdarzO>();
}
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<SklepDokDodKth> SklepDokDodKths { get; set; }
public virtual ICollection<SklepDok> SklepDokSklep1s { get; set; }
public virtual ICollection<SklepDok> SklepDokSklep3s { get; set; }
public virtual ICollection<SklepDost> SklepDosts { get; set; }
public virtual ICollection<SklepKontoBankoweKontr> SklepKontoBankoweKontrs { get; set; }
public virtual ICollection<SklepKontoLoj> SklepKontoLojs { get; set; }
public virtual ICollection<SklepKontrOpi> SklepKontrOpis { get; set; }
public virtual ICollection<SklepKthTypO> SklepKthTypOs { get; set; }
public virtual ICollection<SklepNrRej> SklepNrRejs { get; set; }
public virtual ICollection<SklepTowar> SklepTowars { get; set; }
public virtual ICollection<SklepZdarzO> SklepZdarzOs { get; set; }
}