namespace Pcm.Db.Entities; public class SklepGrupaAkcyzowa { public SklepGrupaAkcyzowa() { SklepPozAkcyzas = new HashSet(); SklepTowAkcyzas = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepGrAkcId { get; set; } public string Kod { get; set; } public decimal? CentrGrAkcId { get; set; } public virtual Sklep Sklep { get; set; } public virtual ICollection SklepPozAkcyzas { get; set; } public virtual ICollection SklepTowAkcyzas { get; set; } }