41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Kasa
|
|
{
|
|
public Kasa()
|
|
{
|
|
DokKasas = new HashSet<DokKasa>();
|
|
KasKods = new HashSet<KasKod>();
|
|
KasPars = new HashSet<KasPar>();
|
|
KasTows = new HashSet<KasTow>();
|
|
KasaFormaPlatns = new HashSet<KasaFormaPlatn>();
|
|
Paragons = new HashSet<Paragon>();
|
|
ProfilKasas = new HashSet<ProfilKasa>();
|
|
Przydzials = new HashSet<Przydzial>();
|
|
Zlecenies = new HashSet<Zlecenie>();
|
|
}
|
|
|
|
public decimal KasaId { get; set; }
|
|
public decimal MagId { 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 Magazyn Mag { get; set; }
|
|
public virtual ICollection<DokKasa> DokKasas { get; set; }
|
|
public virtual ICollection<KasKod> KasKods { get; set; }
|
|
public virtual ICollection<KasPar> KasPars { get; set; }
|
|
public virtual ICollection<KasTow> KasTows { get; set; }
|
|
public virtual ICollection<KasaFormaPlatn> KasaFormaPlatns { get; set; }
|
|
public virtual ICollection<Paragon> Paragons { get; set; }
|
|
public virtual ICollection<ProfilKasa> ProfilKasas { get; set; }
|
|
public virtual ICollection<Przydzial> Przydzials { get; set; }
|
|
public virtual ICollection<Zlecenie> Zlecenies { get; set; }
|
|
} |