using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SkladnikWzorca { public SkladnikWzorca() { TowarSkladnikas = new HashSet(); } public decimal SkWzId { get; set; } public decimal? TowIdWzorca { get; set; } public string Nazwa { get; set; } public short Kolejnosc { get; set; } public decimal Ilosc { get; set; } public decimal Cena { get; set; } public short Obowiazkowy { get; set; } public short Aktywny { get; set; } public DateTime Zmiana { get; set; } public decimal? CentrSkWzId { get; set; } public short? WyborWielu { get; set; } public short? CzyDodatek { get; set; } public short? RozneCeny { get; set; } public short? WyliczenieCeny { get; set; } public virtual Towar TowIdWzorcaNavigation { get; set; } public virtual ICollection TowarSkladnikas { get; set; } }