21 lines
642 B
C#
21 lines
642 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class Bank
|
|
{
|
|
public Bank()
|
|
{
|
|
KontoBankoweKontrs = new HashSet<KontoBankoweKontr>();
|
|
KontoBankowes = new HashSet<KontoBankowe>();
|
|
}
|
|
|
|
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<KontoBankoweKontr> KontoBankoweKontrs { get; set; }
|
|
public virtual ICollection<KontoBankowe> KontoBankowes { get; set; }
|
|
} |