22 lines
733 B
C#
22 lines
733 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepBank
|
|
{
|
|
public SklepBank()
|
|
{
|
|
SklepKontoBankoweKontrs = new HashSet<SklepKontoBankoweKontr>();
|
|
SklepKontoBankowes = new HashSet<SklepKontoBankowe>();
|
|
}
|
|
|
|
public decimal SklepId { get; set; }
|
|
public decimal SklepBankId { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public string Adres { get; set; }
|
|
public short Aktywny { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
public decimal? BankId { get; set; }
|
|
public string NrRozliBank { get; set; }
|
|
|
|
public virtual ICollection<SklepKontoBankoweKontr> SklepKontoBankoweKontrs { get; set; }
|
|
public virtual ICollection<SklepKontoBankowe> SklepKontoBankowes { get; set; }
|
|
} |