using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SklepBank { public SklepBank() { SklepKontoBankoweKontrs = new HashSet(); SklepKontoBankowes = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepBankId { get; set; } public string Nazwa { get; set; } public string Adres { get; set; } public short Aktywny { get; set; } public DateTime Zmiana { get; set; } public decimal? BankId { get; set; } public string NrRozliBank { get; set; } public virtual ICollection SklepKontoBankoweKontrs { get; set; } public virtual ICollection SklepKontoBankowes { get; set; } }