31 lines
1006 B
C#
31 lines
1006 B
C#
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
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; }
|
|
} |