namespace Pcm.Db.Entities; public class Bank { public Bank() { KontoBankoweKontrs = new HashSet(); KontoBankowes = new HashSet(); } public decimal BankId { get; set; } public string Nazwa { get; set; } public string Adres { get; set; } public short Aktywny { get; set; } public DateTime Zmiana { get; set; } public decimal? CentrBankId { get; set; } public string NrRozliBank { get; set; } public virtual ICollection KontoBankoweKontrs { get; set; } public virtual ICollection KontoBankowes { get; set; } }