36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepKontoLoj
|
|
{
|
|
public SklepKontoLoj()
|
|
{
|
|
SklepKartaLojs = new HashSet<SklepKartaLoj>();
|
|
SklepPowKontLojSklepNavigations = new HashSet<SklepPowKontLoj>();
|
|
SklepPowKontLojSkleps = new HashSet<SklepPowKontLoj>();
|
|
}
|
|
|
|
public decimal SklepId { get; set; }
|
|
public decimal SklepKontoId { get; set; }
|
|
public decimal SklepKontrId { get; set; }
|
|
public short TypKonta { get; set; }
|
|
public short Aktywne { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public decimal StanPocz { get; set; }
|
|
public decimal Stan { get; set; }
|
|
public DateTime ZmianaStanu { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
public decimal? KontoId { get; set; }
|
|
public decimal? CentrKontoId { get; set; }
|
|
|
|
public virtual KontoLoj Konto { get; set; }
|
|
public virtual Sklep Sklep { get; set; }
|
|
public virtual SklepKontr SklepNavigation { get; set; }
|
|
public virtual ICollection<SklepKartaLoj> SklepKartaLojs { get; set; }
|
|
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepNavigations { get; set; }
|
|
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSkleps { get; set; }
|
|
} |