19 lines
595 B
C#
19 lines
595 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepGrupaAkcyzowa
|
|
{
|
|
public SklepGrupaAkcyzowa()
|
|
{
|
|
SklepPozAkcyzas = new HashSet<SklepPozAkcyza>();
|
|
SklepTowAkcyzas = new HashSet<SklepTowAkcyza>();
|
|
}
|
|
|
|
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<SklepPozAkcyza> SklepPozAkcyzas { get; set; }
|
|
public virtual ICollection<SklepTowAkcyza> SklepTowAkcyzas { get; set; }
|
|
} |