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

27 lines
952 B
C#

namespace Pcm.Db.Entities;
public class SklepKasa
{
public SklepKasa()
{
SklepDoks = new HashSet<SklepDok>();
SklepKasaFormaPlatns = new HashSet<SklepKasaFormaPlatn>();
SklepParagons = new HashSet<SklepParagon>();
}
public decimal SklepId { get; set; }
public decimal SklepKasaId { get; set; }
public decimal SklepMagId { get; set; }
public short Numer { get; set; }
public string Nazwa { get; set; }
public short Rodzaj { get; set; }
public string Typ { get; set; }
public short Aktywny { get; set; }
public string Stanowisko { get; set; }
public virtual Sklep Sklep { get; set; }
public virtual SklepMagazyn SklepNavigation { get; set; }
public virtual ICollection<SklepDok> SklepDoks { get; set; }
public virtual ICollection<SklepKasaFormaPlatn> SklepKasaFormaPlatns { get; set; }
public virtual ICollection<SklepParagon> SklepParagons { get; set; }
}