namespace Pcm.Db.Entities; public class Walutum { public Walutum() { DokKurs = new HashSet(); DokWaluta = new HashSet(); Doks = new HashSet(); KontoBankoweKontrs = new HashSet(); KontoBankowes = new HashSet(); Krajs = new HashSet(); KursWaluties = new HashSet(); ParWaluta = new HashSet(); Paragons = new HashSet(); SklepWaluta = new HashSet(); } 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 decimal? Spread { get; set; } public decimal? SpreadZak { get; set; } public decimal? KursZak { get; set; } public decimal? CentrWalId { get; set; } public string Skrot1 { get; set; } public string Skrot100 { get; set; } public short? UkrycNaKasie { get; set; } public virtual ICollection DokKurs { get; set; } public virtual ICollection DokWaluta { get; set; } public virtual ICollection Doks { get; set; } public virtual ICollection KontoBankoweKontrs { get; set; } public virtual ICollection KontoBankowes { get; set; } public virtual ICollection Krajs { get; set; } public virtual ICollection KursWaluties { get; set; } public virtual ICollection ParWaluta { get; set; } public virtual ICollection Paragons { get; set; } public virtual ICollection SklepWaluta { get; set; } }