using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Regula { public Regula() { RegulaAsorts = new HashSet(); RegulaDoks = new HashSet(); RegulaKods = new HashSet(); RegulaParams = new HashSet(); RegulaPars = new HashSet(); RegulaPozDokSzczegs = new HashSet(); RegulaPozDoks = new HashSet(); RegulaPozParSzczegs = new HashSet(); RegulaPozPars = new HashSet(); RegulaProgs = new HashSet(); RegulaSkleps = new HashSet(); RegulaTowars = new HashSet(); } public decimal RegulaId { get; set; } public string Nazwa { get; set; } public short Typ { get; set; } public short? TypKarty { get; set; } public DateTime? DataCzasOd { get; set; } public DateTime? DataCzasDo { get; set; } public short Priorytet { get; set; } public decimal? Number1 { get; set; } public decimal? Number2 { get; set; } public decimal? Number3 { get; set; } public decimal? Number4 { get; set; } public int? Int1 { get; set; } public int? Int2 { get; set; } public int? Int3 { get; set; } public int? Int4 { get; set; } public string Str1 { get; set; } public string Str2 { get; set; } public DateTime Zmiana { get; set; } public short Aktywny { get; set; } public decimal? CentrRegulaId { get; set; } public DateTime? Utworzono { get; set; } public DateTime? Usunieto { get; set; } public virtual ICollection RegulaAsorts { get; set; } public virtual ICollection RegulaDoks { get; set; } public virtual ICollection RegulaKods { get; set; } public virtual ICollection RegulaParams { get; set; } public virtual ICollection RegulaPars { get; set; } public virtual ICollection RegulaPozDokSzczegs { get; set; } public virtual ICollection RegulaPozDoks { get; set; } public virtual ICollection RegulaPozParSzczegs { get; set; } public virtual ICollection RegulaPozPars { get; set; } public virtual ICollection RegulaProgs { get; set; } public virtual ICollection RegulaSkleps { get; set; } public virtual ICollection RegulaTowars { get; set; } }