namespace Pcm.Db.Entities; public class SklepWalutum { public SklepWalutum() { SklepDokKurs = new HashSet(); SklepDokWaluta = new HashSet(); SklepDoks = new HashSet(); SklepKontoBankoweKontrs = new HashSet(); SklepKontoBankowes = new HashSet(); SklepParWaluta = new HashSet(); SklepParagons = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepWalId { get; set; } public decimal? WalId { get; set; } public string Kod { get; set; } public string Nazwa { get; set; } public decimal Kurs { get; set; } public short Znaczenie { get; set; } public short Aktywny { get; set; } public string Skrot1 { get; set; } public string Skrot100 { get; set; } public short? UkrycNaKasie { get; set; } public virtual Sklep Sklep { get; set; } public virtual Walutum Wal { get; set; } public virtual ICollection SklepDokKurs { get; set; } public virtual ICollection SklepDokWaluta { get; set; } public virtual ICollection SklepDoks { get; set; } public virtual ICollection SklepKontoBankoweKontrs { get; set; } public virtual ICollection SklepKontoBankowes { get; set; } public virtual ICollection SklepParWaluta { get; set; } public virtual ICollection SklepParagons { get; set; } }