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

30 lines
780 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepBank
{
public decimal SklepId { get; set; }
public decimal SklepBankId { 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? BankId { get; set; }
public string? NrRozliBank { get; set; }
public string? SWIFT { get; set; }
public virtual ICollection<SklepKontoBankowe> SklepKontoBankowe { get; set; } = new List<SklepKontoBankowe>();
public virtual ICollection<SklepKontoBankoweKontr> SklepKontoBankoweKontr { get; set; } = new List<SklepKontoBankoweKontr>();
}