25 lines
856 B
C#
25 lines
856 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepTypO
|
|
{
|
|
public SklepTypO()
|
|
{
|
|
SklepFormZgods = new HashSet<SklepFormZgod>();
|
|
SklepKthTypOs = new HashSet<SklepKthTypO>();
|
|
SklepZdarzOs = new HashSet<SklepZdarzO>();
|
|
}
|
|
|
|
public decimal SklepId { get; set; }
|
|
public decimal SklepTypOsId { get; set; }
|
|
public decimal? TypOsId { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public short Aktywny { get; set; }
|
|
public string Komentarz { get; set; }
|
|
public decimal? CentrTypOsId { get; set; }
|
|
|
|
public virtual Sklep Sklep { get; set; }
|
|
public virtual TypO TypOs { get; set; }
|
|
public virtual ICollection<SklepFormZgod> SklepFormZgods { get; set; }
|
|
public virtual ICollection<SklepKthTypO> SklepKthTypOs { get; set; }
|
|
public virtual ICollection<SklepZdarzO> SklepZdarzOs { get; set; }
|
|
} |