DRAB/Pcm.Db/Entities/Magazyn.cs
2025-07-11 00:18:14 +02:00

37 lines
1.3 KiB
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Magazyn
{
public Magazyn()
{
Doks = new HashSet<Dok>();
Istws = new HashSet<Istw>();
Kasas = new HashSet<Kasa>();
KontoBankowes = new HashSet<KontoBankowe>();
Marzowniks = new HashSet<Marzownik>();
NumMags = new HashSet<NumMag>();
PolMags = new HashSet<PolMag>();
PrtMags = new HashSet<PrtMag>();
RapWartPoczDanes = new HashSet<RapWartPoczDane>();
Skleps = new HashSet<Sklep>();
}
public decimal MagId { get; set; }
public string Nazwa { get; set; }
public short? Numer { get; set; }
public virtual ICollection<Dok> Doks { get; set; }
public virtual ICollection<Istw> Istws { get; set; }
public virtual ICollection<Kasa> Kasas { get; set; }
public virtual ICollection<KontoBankowe> KontoBankowes { get; set; }
public virtual ICollection<Marzownik> Marzowniks { get; set; }
public virtual ICollection<NumMag> NumMags { get; set; }
public virtual ICollection<PolMag> PolMags { get; set; }
public virtual ICollection<PrtMag> PrtMags { get; set; }
public virtual ICollection<RapWartPoczDane> RapWartPoczDanes { get; set; }
public virtual ICollection<Sklep> Skleps { get; set; }
}