27 lines
915 B
C#
27 lines
915 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class GrupaAkcyzowa
|
|
{
|
|
public GrupaAkcyzowa()
|
|
{
|
|
PozAkcyzas = new HashSet<PozAkcyza>();
|
|
TabelaAkcyzowas = new HashSet<TabelaAkcyzowa>();
|
|
TowAkcyzas = new HashSet<TowAkcyza>();
|
|
}
|
|
|
|
public decimal GrAkcId { get; set; }
|
|
public string Kod { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public string AkcJm { get; set; }
|
|
public string OpcjeWzoru { get; set; }
|
|
public string PrefiksyCn { get; set; }
|
|
public string Opis { get; set; }
|
|
public decimal? CentrGrAkcId { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
public string DodJm { get; set; }
|
|
public decimal? IleDodJmwakcJm { get; set; }
|
|
|
|
public virtual ICollection<PozAkcyza> PozAkcyzas { get; set; }
|
|
public virtual ICollection<TabelaAkcyzowa> TabelaAkcyzowas { get; set; }
|
|
public virtual ICollection<TowAkcyza> TowAkcyzas { get; set; }
|
|
} |