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

37 lines
1.5 KiB
C#

namespace Pcm.Db.Entities;
public class SklepWalutum
{
public SklepWalutum()
{
SklepDokKurs = new HashSet<SklepDokKur>();
SklepDokWaluta = new HashSet<SklepDokWalutum>();
SklepDoks = new HashSet<SklepDok>();
SklepKontoBankoweKontrs = new HashSet<SklepKontoBankoweKontr>();
SklepKontoBankowes = new HashSet<SklepKontoBankowe>();
SklepParWaluta = new HashSet<SklepParWalutum>();
SklepParagons = new HashSet<SklepParagon>();
}
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<SklepDokKur> SklepDokKurs { get; set; }
public virtual ICollection<SklepDokWalutum> SklepDokWaluta { get; set; }
public virtual ICollection<SklepDok> SklepDoks { get; set; }
public virtual ICollection<SklepKontoBankoweKontr> SklepKontoBankoweKontrs { get; set; }
public virtual ICollection<SklepKontoBankowe> SklepKontoBankowes { get; set; }
public virtual ICollection<SklepParWalutum> SklepParWaluta { get; set; }
public virtual ICollection<SklepParagon> SklepParagons { get; set; }
}