2024-05-16 10:37:44 +02:00

28 lines
703 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Bank
{
public decimal BankId { get; set; }
public string Nazwa { get; set; } = null!;
public string Adres { get; set; } = null!;
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public decimal? CentrBankId { get; set; }
public string? NrRozliBank { get; set; }
public string? SWIFT { get; set; }
public virtual ICollection<KontoBankowe> KontoBankowe { get; set; } = new List<KontoBankowe>();
public virtual ICollection<KontoBankoweKontr> KontoBankoweKontr { get; set; } = new List<KontoBankoweKontr>();
}