using System; namespace Kreta.Framework.Caching.DictionaryItemTables { /// /// Kódtétel osztály. /// [Serializable] public class SzakkepesitesTipusDictionaryItem : DictionaryItem { /// /// Az osztály konstruktora. /// /// Kódtétel elem public SzakkepesitesTipusDictionaryItem(DictionaryItem dictionaryItem) : base(dictionaryItem) { ExtendedProperties = dictionaryItem.ExtendedProperties; } #region Properties /// /// A szakképesítés típus szintje /// public int? SzakkepesitesSzint => (int?)ExtendedProperties[nameof(SzakkepesitesSzint)]; /// /// A szakképesítés típus tanulmányi területe /// public int? TanulmanyiTerulet => (int?)ExtendedProperties[nameof(TanulmanyiTerulet)]; /// /// A szakképesítés típus terület sorszáma /// public int? TeruletSorszam => (int?)ExtendedProperties[nameof(TeruletSorszam)]; #endregion } }