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

25 lines
923 B
C#

namespace Pcm.Db.Entities;
public class SklepMagazyn
{
public SklepMagazyn()
{
SklepDoks = new HashSet<SklepDok>();
SklepIstws = new HashSet<SklepIstw>();
SklepKasas = new HashSet<SklepKasa>();
SklepPrtMags = new HashSet<SklepPrtMag>();
SklepRapWartPoczDanes = new HashSet<SklepRapWartPoczDane>();
}
public decimal SklepId { get; set; }
public decimal SklepMagId { get; set; }
public short Numer { get; set; }
public string Nazwa { get; set; }
public virtual Sklep Sklep { get; set; }
public virtual ICollection<SklepDok> SklepDoks { get; set; }
public virtual ICollection<SklepIstw> SklepIstws { get; set; }
public virtual ICollection<SklepKasa> SklepKasas { get; set; }
public virtual ICollection<SklepPrtMag> SklepPrtMags { get; set; }
public virtual ICollection<SklepRapWartPoczDane> SklepRapWartPoczDanes { get; set; }
}