Dekrety #1
This commit is contained in:
27
Blink.Backoffice.Services.PcmDb/Entities/Bank.cs
Normal file
27
Blink.Backoffice.Services.PcmDb/Entities/Bank.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user