using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Kasa { public Kasa() { DokKasas = new HashSet(); KasKods = new HashSet(); KasPars = new HashSet(); KasTows = new HashSet(); KasaFormaPlatns = new HashSet(); Paragons = new HashSet(); ProfilKasas = new HashSet(); Przydzials = new HashSet(); Zlecenies = new HashSet(); } 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 DokKasas { get; set; } public virtual ICollection KasKods { get; set; } public virtual ICollection KasPars { get; set; } public virtual ICollection KasTows { get; set; } public virtual ICollection KasaFormaPlatns { get; set; } public virtual ICollection Paragons { get; set; } public virtual ICollection ProfilKasas { get; set; } public virtual ICollection Przydzials { get; set; } public virtual ICollection Zlecenies { get; set; } }