DRAB/Pcm.Db/Entities/KontoBankowe.cs
2025-07-11 00:18:14 +02:00

35 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class KontoBankowe
{
public KontoBankowe()
{
DokKontoBankowes = new HashSet<DokKontoBankowe>();
Oplata = new HashSet<Oplatum>();
}
public decimal Kbid { get; set; }
public string Nazwa { get; set; }
public string Numer { get; set; }
public short Domyslne { get; set; }
public short Typ { get; set; }
public string Sufix { get; set; }
public decimal BankId { get; set; }
public decimal WalId { get; set; }
public decimal? PowKbid { get; set; }
public decimal? MagId { get; set; }
public short Aktywne { get; set; }
public DateTime Zmiana { get; set; }
public decimal? CentrKbid { get; set; }
public virtual Bank Bank { get; set; }
public virtual Magazyn Mag { get; set; }
public virtual Walutum Wal { get; set; }
public virtual ICollection<DokKontoBankowe> DokKontoBankowes { get; set; }
public virtual ICollection<Oplatum> Oplata { get; set; }
}