using System;
using System.Collections.Generic;
using System.Linq;
using Kreta.DataAccess.Interfaces;
using Kreta.Framework;
using Kreta.Framework.Actions;
using Kreta.Framework.Collections;
using Kreta.Framework.Collections.Generic;
using Kreta.Framework.Entities;
using Kreta.Framework.Entities.Generic;
using Kreta.Framework.Exceptions;
namespace SDA.Kreta.Entities
{
///
/// Az UML modell Tanev entitásának megvalósítása.
///
/// A kód teljes egészében generált, kézi módosítása nem megengedett!
[Entity("Tanev")]
// alapértelmezett EntityHistoryMode
public class Tanev : Entity, ITanev
{
internal protected Tanev()
: base()
{
}
public class AttributeInfo
{
public const string Aktiv = "Aktiv";
public const string ElsoTanitasiNap = "ElsoTanitasiNap";
public const string KezdoNap = "KezdoNap";
public const string Kovetkezo = "Kovetkezo";
public const string Nev = "Nev";
public const string Sorszam = "Sorszam";
public const string UtolsoNap = "UtolsoNap";
public const string UtolsoTanitasiNap = "UtolsoTanitasiNap";
public const string Aktivalva = "Aktivalva";
public const string IsKivalaszthato = "IsKivalaszthato";
public const string AktivalhatosagKezdete = "AktivalhatosagKezdete";
}
public class AttributeLengthInfo
{
public const int NevLength = 20;
}
#region General
private TanevDA m_DA = new TanevDA();
protected static Tanev FakeTanev { get; set; }
public static Tanev GiveAnInstance()
{
Tanev result = FakeTanev == null
? new Tanev()
: (Tanev)FakeTanev.MemberwiseClone();
result.Reset();
result.SetDefaultData();
return result;
}
protected void SetDefaultData()
{
if (UserContext.Instance != null)
{
if (UserContext.Instance.IntezmenyId > 0)
{
IntezmenyId = UserContext.Instance.IntezmenyId;
}
m_State = EntityState.Uninitialized;
}
}
protected override IEntityDataAccessor GetDataAccessor() { return m_DA; }
protected internal virtual IEntityDataAccessor InheritedDA { get { return null; } }
[Obsolete("Ezt ne használjátok, mert mindenhova bele kellene fogalmazni a tanév szűrést is! Meg fog majd szűnni!")]
public static IEntityCollection LoadAll()
{
return LoadWithFilter("");
}
[Obsolete("Ezt ne használjátok, mert mindenhova bele kellene fogalmazni a tanév szűrést is! Meg fog majd szűnni!")]
public static IEntityCollection LoadAll(ColumnFilterMode columnFilterMode, IEnumerable columns)
{
return LoadWithFilter("", columnFilterMode, columns);
}
[Obsolete("Ezt ne használjátok, mert mindenhova bele kellene fogalmazni a tanév szűrést is! Meg fog majd szűnni!")]
public static IEntityCollection LoadWithFilter(string filter, Dictionary commandParameters = null)
{
var result = new EntityCollection();
new TanevDA().LoadWithFilter(result, filter, commandParameters);
return result;
}
[Obsolete("Ezt ne használjátok, mert mindenhova bele kellene fogalmazni a tanév szűrést is! Meg fog majd szűnni!")]
public static IEntityCollection LoadWithFilter(string filter, ColumnFilterMode columnFilterMode, IEnumerable columns, Dictionary commandParameters = null)
{
var result = new EntityCollection();
new TanevDA().LoadWithFilter(result, filter, columnFilterMode, columns, commandParameters);
return result;
}
protected override void StoreOriginalValues()
{
base.StoreOriginalValues();
OriginalValues.Add("Aktiv", (Aktiv == null ? (object)DBNull.Value : (object)m_Aktiv));
OriginalValues.Add("ElsoTanitasiNap", (ElsoTanitasiNap == null ? (object)DBNull.Value : (object)m_ElsoTanitasiNap));
OriginalValues.Add("KezdoNap", (KezdoNap == null ? (object)DBNull.Value : (object)m_KezdoNap));
OriginalValues.Add("Kovetkezo", (Kovetkezo == null ? (object)DBNull.Value : (object)m_Kovetkezo));
OriginalValues.Add("Nev", (Nev == null ? (object)DBNull.Value : (object)m_Nev));
OriginalValues.Add("Sorszam", (Sorszam == null ? (object)DBNull.Value : (object)m_Sorszam));
OriginalValues.Add("UtolsoNap", (UtolsoNap == null ? (object)DBNull.Value : (object)m_UtolsoNap));
OriginalValues.Add("UtolsoTanitasiNap", (UtolsoTanitasiNap == null ? (object)DBNull.Value : (object)m_UtolsoTanitasiNap));
OriginalValues.Add("Aktivalva", (Aktivalva == null ? (object)DBNull.Value : (object)m_Aktivalva));
OriginalValues.Add("IsKivalaszthato", (object)m_IsKivalaszthato);
OriginalValues.Add("AktivalhatosagKezdete", (AktivalhatosagKezdete == null ? (object)DBNull.Value : (object)m_AktivalhatosagKezdete));
OriginalValues.Add("IntezmenyId", (m_IntezmenyId < 0 ? (object)DBNull.Value : (object)m_IntezmenyId));
}
#endregion
#region Ellenőrzés
protected override void Validate(bool skipValidateAttributes = false)
{
base.Validate();
if (!skipValidateAttributes)
{
// korlátos hosszúságú mezők ellenőrzése...
if (m_Nev != null && m_Nev.Length > 20)
{
throw new InvalidEntityAttributeException("Tanev", "Nev", EntityAttributeError.TooLong);
}
}
// kötelező asszociációk ellenőrzése...
if (m_IntezmenyId == -1) { throw new InvalidEntityAttributeException("Tanev", "IntezmenyId", EntityAttributeError.Empty); }
}
#endregion
#region Alaphelyzetbe állítás
protected override void Reset()
{
base.Reset();
// alaphelyzetbe állítjuk az egyszerű mezőket
this.m_Aktiv = null;
this.m_ElsoTanitasiNap = null;
this.m_KezdoNap = null;
this.m_Kovetkezo = null;
this.m_Nev = null;
this.m_Sorszam = null;
this.m_UtolsoNap = null;
this.m_UtolsoTanitasiNap = null;
this.m_Aktivalva = null;
this.m_IsKivalaszthato = true;
this.m_AktivalhatosagKezdete = null;
// alaphelyzetbe állítjuk az asszociációkból származó mezőket
this.m_FelvettTanulok = null; // EntityCollection
this.m_IntezmenyAdatok = null; // EntityCollection
this.m_IntezmenyId = -1;
this.m_Intezmeny = null; // Entity
this.m_IntezmenyAdatszolgaltatas = null; // EntityCollection
this.m_FelvettTanulokTanugyiAdatok = null; // EntityCollection
this.m_Felhasznalo = null; // EntityCollection
this.m_Email = null; // EntityCollection
this.m_Cim = null; // EntityCollection
this.m_Szerepkor = null; // EntityCollection
this.m_Telefon = null; // EntityCollection
this.m_DictionaryItemBase = null; // EntityCollection
this.m_Nem = null; // EntityCollection
this.m_CimTipus = null; // EntityCollection
this.m_Allampolgarsag = null; // EntityCollection
this.m_TelefonTipus = null; // EntityCollection
this.m_EmailTipus = null; // EntityCollection
this.m_EsemenyStatusz = null; // EntityCollection
this.m_OrszagTipus = null; // EntityCollection
this.m_MunkaviszonyJellege = null; // EntityCollection
this.m_DiakigazolvanyIgenyStatusz = null; // EntityCollection
this.m_UserProfile = null; // EntityCollection
this.m_KozteruletJelleg = null; // EntityCollection
this.m_DiakigazolvanyIgenyTipus = null; // EntityCollection
this.m_Honapok = null; // EntityCollection
this.m_FelhasznaloBelepesTortenet = null; // EntityCollection
this.m_Megye = null; // EntityCollection
this.m_Log = null; // EntityCollection
this.m_FelhasznaloBelepes = null; // EntityCollection
this.m_MagantanulosagOka = null; // EntityCollection
this.m_TeremTipus = null; // EntityCollection
this.m_IngyenesTankonyvEllatas = null; // EntityCollection
this.m_Eszkoz = null; // EntityCollection
this.m_EszkozKategoria = null; // EntityCollection
this.m_EszkozTipus = null; // EntityCollection
this.m_Terem = null; // EntityCollection
this.m_MunkaviszonyTipus = null; // EntityCollection
this.m_IgazolvanyTipus = null; // EntityCollection
this.m_Anyanyelv = null; // EntityCollection
this.m_Alkalmazott = null; // EntityCollection
this.m_MukodesiHely = null; // EntityCollection
this.m_MunkakorTipus = null; // EntityCollection
this.m_Gondviselo = null; // EntityCollection
this.m_Tanulo = null; // EntityCollection
this.m_RokonsagiFok = null; // EntityCollection
this.m_CsoportTipus = null; // EntityCollection
this.m_FenntartoTipus = null; // EntityCollection
this.m_MertekegysegTipus = null; // EntityCollection
this.m_EszkozCel = null; // EntityCollection
this.m_Csoport = null; // EntityCollection
this.m_EszkozJelleg = null; // EntityCollection
this.m_TestnevelesTipus = null; // EntityCollection
this.m_TanterviJelleg = null; // EntityCollection
this.m_Osztaly = null; // EntityCollection
this.m_OsztalyCsoport = null; // EntityCollection
this.m_Vallas = null; // EntityCollection
this.m_HatranyosHelyzetTipus = null; // EntityCollection
this.m_EtkezesiKedvezmenyTipus = null; // EntityCollection
this.m_LatasserultTipus = null; // EntityCollection
this.m_HallasserultTipus = null; // EntityCollection
this.m_ErtelmiFogyatekosTipus = null; // EntityCollection
this.m_OktatasiNevelesiFeladat = null; // EntityCollection
this.m_Tanterv = null; // EntityCollection
this.m_Tantargy = null; // EntityCollection
this.m_EvfolyamTipus = null; // EntityCollection
this.m_TargyKategoriaTipus = null; // EntityCollection
this.m_Foglalkozas = null; // EntityCollection
this.m_FoglalkozasTipus = null; // EntityCollection
this.m_NapTipus = null; // EntityCollection
this.m_HetiRendTipus = null; // EntityCollection
this.m_TanevRendje = null; // EntityCollection
this.m_HetNapjaTipus = null; // EntityCollection
this.m_CsengetesiRend = null; // EntityCollection
this.m_TanuloCsoport = null; // EntityCollection
this.m_OrarendiOra = null; // EntityCollection
this.m_Tanmenet = null; // EntityCollection
this.m_NaptariNap = null; // EntityCollection
this.m_HelyettesitesTipus = null; // EntityCollection
this.m_TanitasiOra = null; // EntityCollection
this.m_TanuloErtekeles = null; // EntityCollection
this.m_ErtekelesTipus = null; // EntityCollection
this.m_OsztalyzatTipus = null; // EntityCollection
this.m_ErtekelesMod = null; // EntityCollection
this.m_TanuloMulasztas = null; // EntityCollection
this.m_MulasztasTipus = null; // EntityCollection
this.m_CsengetesiRendOra = null; // EntityCollection
this.m_IgazolasTipus = null; // EntityCollection
this.m_EsemenyTipus = null; // EntityCollection
this.m_TanuloEsemeny = null; // EntityCollection
this.m_SzorgalomErtekelesTipus = null; // EntityCollection
this.m_MagatartasErtekelesTipus = null; // EntityCollection
this.m_Oralatogatas = null; // EntityCollection
this.m_Igazolas = null; // EntityCollection
this.m_NaploEllenorzes = null; // EntityCollection
this.m_TanuloMentesseg = null; // EntityCollection
this.m_EletpalyamodellStatuszok = null; // EntityCollection
this.m_EletpalyamodellFokozatTipus = null; // EntityCollection
this.m_PedagogusEletpalyamodell = null; // EntityCollection
this.m_TevekenysegTipus = null; // EntityCollection
this.m_ErtesitesSzinTipus = null; // EntityCollection
this.m_ErtesitesTipus = null; // EntityCollection
this.m_Ertesites = null; // EntityCollection
this.m_ErtesitesGeneralasTortenet = null; // EntityCollection
this.m_TanariAtlagSuly = null; // EntityCollection
this.m_KizaroCsoportTipus = null; // EntityCollection
this.m_OraTerv = null; // EntityCollection
this.m_RendszerBeallitas = null; // EntityCollection
this.m_OraTervTargy = null; // EntityCollection
this.m_RendszerBeallitasTipus = null; // EntityCollection
this.m_FeladatEllatasiHely = null; // EntityCollection
this.m_OldalLatogatottsag = null; // EntityCollection
this.m_MulasztasStatisztikaTipus = null; // EntityCollection
this.m_SystemSettingsControlType = null; // EntityCollection
this.m_MunkaugyiAdatok = null; // EntityCollection
this.m_RendszerErtesitesek = null; // EntityCollection
this.m_TanuloKozossegiSzolgalat = null; // EntityCollection
this.m_SzerepkorTipus = null; // EntityCollection
this.m_Jogosultsag = null; // EntityCollection
this.m_IktatottDokumentumok = null; // EntityCollection
this.m_HelyettesitesiIdoszak = null; // EntityCollection
this.m_NaptariHet = null; // EntityCollection
this.m_KretaTipus = null; // EntityCollection
this.m_PedagogusStatusz = null; // EntityCollection
this.m_BesorolasiFokozatTipus = null; // EntityCollection
this.m_MunkaidoKedvezmenyOka = null; // EntityCollection
this.m_KirTelephely = null; // EntityCollection
this.m_CsoportTipus_FoglalkozasTipus = null; // EntityCollection
this.m_SorolasOkaTipus = null; // EntityCollection
this.m_FoglalkozasArchiv = null; // EntityCollection
this.m_ESLAdatTipus = null; // EntityCollection
this.m_TanuloESLAdatok = null; // EntityCollection
this.m_ESLAdat = null; // EntityCollection
this.m_NemKotottMunkaido = null; // EntityCollection
this.m_ENaploInfra = null; // EntityCollection
this.m_AdatszolgaltatasENaplo = null; // EntityCollection
this.m_ENaploForras = null; // EntityCollection
this.m_ENaploTipus = null; // EntityCollection
this.m_SzerzodoSzemelyPozicio = null; // EntityCollection
this.m_Forras = null; // EntityCollection
this.m_Prioritas = null; // EntityCollection
this.m_HibajegyStatusz = null; // EntityCollection
this.m_OsszegTullepesTipus = null; // EntityCollection
this.m_Idokeret = null; // EntityCollection
this.m_FelvetelStatuszaTipus = null; // EntityCollection
this.m_Nebulo = null; // EntityCollection
this.m_TagozatTipus = null; // EntityCollection
this.m_ENaploHasznalat = null; // EntityCollection
this.m_IKTKompetenciaSzint = null; // EntityCollection
this.m_WiFiEleres = null; // EntityCollection
this.m_PedagogusIKTAdatszolgaltatas = null; // EntityCollection
this.m_ElsodlegesIKTEszkoz = null; // EntityCollection
this.m_IKTEszkozhasznalatMod = null; // EntityCollection
this.m_MukodesiHelyTipus = null; // EntityCollection
this.m_SzakkepesitesTipus = null; // EntityCollection
this.m_SzakmacsoportTipus = null; // EntityCollection
this.m_AgazatTipus = null; // EntityCollection
this.m_ReszszakkepesitesTipus = null; // EntityCollection
this.m_TovabbiMunkaugyiAdatok = null; // EntityCollection
this.m_ErettsegiTantargy = null; // EntityCollection
this.m_ErettsegiTantargyAdatok = null; // EntityCollection
this.m_ErettsegiEredmeny = null; // EntityCollection
this.m_ErettsegiTipus = null; // EntityCollection
this.m_ErettsegiSzint = null; // EntityCollection
this.m_FoglalkoztatasTipusa = null; // EntityCollection
this.m_VezetoiOraszamokTipus = null; // EntityCollection
this.m_IntezmenyEszkozAdatszolgaltatas = null; // EntityCollection
this.m_MukodesiHelyAdatszolgaltatas = null; // EntityCollection
this.m_KozossegiSzolgalatTipus = null; // EntityCollection
this.m_ErtekelesMondatbank = null; // EntityCollection
this.m_NATKerdoiv = null; // EntityCollection
this.m_TanitasiOraTulajdonsag = null; // EntityCollection
this.m_OraTulajdonsagTipus = null; // EntityCollection
this.m_OrarendiOraTulajdonsag = null; // EntityCollection
this.m_TanuloMulasztasLattamozas = null; // EntityCollection
this.m_TanuloEsemenyLattamozas = null; // EntityCollection
this.m_TanuloErtekelesLattamozas = null; // EntityCollection
this.m_DictionaryType = null; // EntityCollection
this.m_eLearning = null; // EntityCollection
this.m_VegzettsegTipus = null; // EntityCollection
this.m_HaziFeladatok = null; // EntityCollection
this.m_HittanTipus = null; // EntityCollection
this.m_HittanAdatszolgaltatas = null; // EntityCollection
this.m_JelszoVisszaallitas = null; // EntityCollection
this.m_KozmuSzamlaTipus = null; // EntityCollection
this.m_Merohely = null; // EntityCollection
this.m_KozmuSzamla = null; // EntityCollection
this.m_MerohelyTipus = null; // EntityCollection
this.m_Meroallas = null; // EntityCollection
this.m_PenznemTipus = null; // EntityCollection
this.m_Licence = null; // EntityCollection
this.m_LicenceFunkciokTipus = null; // EntityCollection
this.m_ErettsegiKerdes = null; // EntityCollection
this.m_ErettsegiValasz = null; // EntityCollection
this.m_TanuloHaziFeladat = null; // EntityCollection
this.m_Vegzettseg = null; // EntityCollection
this.m_Kepesites = null; // EntityCollection
this.m_GimnaziumiEvfolyamTipus = null; // EntityCollection
this.m_SzakTipus = null; // EntityCollection
this.m_KirSzolgaltatasTipus = null; // EntityCollection
this.m_KIRKontenerElem = null; // EntityCollection
this.m_KIRKontenerStatusz = null; // EntityCollection
this.m_KIRKontener = null; // EntityCollection
this.m_KIRKontenerElemStatusz = null; // EntityCollection
this.m_OsszefuggoSzakGyak = null; // EntityCollection
this.m_KKAMIZenemuvKatTipus = null; // EntityCollection
this.m_KKSzakTipus = null; // EntityCollection
this.m_KKKepesitesTipus = null; // EntityCollection
this.m_KKGyogypedTerTipus = null; // EntityCollection
this.m_KKAMIKlasszikusTipus = null; // EntityCollection
this.m_KKTanitoMuvTerTipus = null; // EntityCollection
this.m_KKAMIJazzZeneTipus = null; // EntityCollection
this.m_KKAMITeruletTipus = null; // EntityCollection
this.m_KKAMIVegzettsegTipus = null; // EntityCollection
this.m_KKAMIElektroakuTipus = null; // EntityCollection
this.m_KKAMINepzeneTipus = null; // EntityCollection
this.m_KKVegzettsegTipus = null; // EntityCollection
this.m_KKTanitoVezgettseg = null; // EntityCollection
this.m_KKTanarVegzettseg = null; // EntityCollection
this.m_KKTerulet = null; // EntityCollection
this.m_KKElektroakuZene = null; // EntityCollection
this.m_KKNepzene = null; // EntityCollection
this.m_KKGyogypedVegzettseg = null; // EntityCollection
this.m_KKAMIVegzettseg = null; // EntityCollection
this.m_KKKlasszikusZene = null; // EntityCollection
this.m_KKJazzZene = null; // EntityCollection
this.m_KKKepesitesJellTipus = null; // EntityCollection
this.m_KKTantargyKategoria = null; // EntityCollection
this.m_ErtMondatbankTipus = null; // EntityCollection
this.m_Diakolimpia = null; // EntityCollection
this.m_JelszoModositasLink = null; // EntityCollection
this.m_DokumentumKategoria = null; // EntityCollection
this.m_DokumentumKulcsszoTipus = null; // EntityCollection
this.m_DokumentumStatusz = null; // EntityCollection
this.m_DokumentumTipus = null; // EntityCollection
this.m_DokumentumKulcsszo = null; // EntityCollection
this.m_IktatottDokumentum = null; // EntityCollection
this.m_DokumentumKulcsszoErtek = null; // EntityCollection
this.m_Dokumentum = null; // EntityCollection
this.m_OktNevelesiKategoria = null; // EntityCollection
this.m_ElearningElerhetoseg = null; // EntityCollection
this.m_Fogadoora = null; // EntityCollection
this.m_FogadooraIdopont = null; // EntityCollection
this.m_Fogadoora_OsztalyCsoport = null; // EntityCollection
this.m_FogadooraIdopont_Gondviselo = null; // EntityCollection
this.m_DokumentumElemiSzint = null; // EntityCollection
this.m_Kurzus = null; // EntityCollection
this.m_ElvegzettKurzus = null; // EntityCollection
this.m_TanuloTanugyiAdatok = null; // EntityCollection
this.m_TeremElerhetoseg = null; // EntityCollection
this.m_TavolletStatusz = null; // EntityCollection
this.m_TavolletTipus = null; // EntityCollection
this.m_ESLTantargykategoria = null; // EntityCollection
this.m_TavolletJelento = null; // EntityCollection
this.m_FeltoltottFajl = null; // EntityCollection
this.m_ZenemuveszetiAgTipus = null; // EntityCollection
this.m_MuveszetiAg = null; // EntityCollection
this.m_SAPTavollet = null; // EntityCollection
this.m_SzamonkeresElorejelzes = null; // EntityCollection
this.m_EugyintezesLog = null; // EntityCollection
this.m_AMITagozat = null; // EntityCollection
this.m_AMITantargyKotelezoseg = null; // EntityCollection
this.m_AMIFotargy = null; // EntityCollection
this.m_FoglalkozasAmiTanulo = null; // EntityCollection
this.m_ElearningFelhasznalo = null; // EntityCollection
this.m_Terem_FeltoltottFajl = null; // EntityCollection
this.m_DashboardUzenetFelhasznalo = null; // EntityCollection
this.m_MennyisegiEgyseg = null; // EntityCollection
this.m_BeszerzesiIgenySatusz = null; // EntityCollection
this.m_BeszerzesiSzallito = null; // EntityCollection
this.m_BeszerzesiAnyagtorzs = null; // EntityCollection
this.m_BeszerzesiIgenyDokumentum = null; // EntityCollection
this.m_BeszerzesiAnyag = null; // EntityCollection
this.m_BeszerzesiSzallitotorzs = null; // EntityCollection
this.m_BeszerzesiIgeny = null; // EntityCollection
this.m_BeszerzesiIgenyMegjegyzes = null; // EntityCollection
this.m_Hetes = null; // EntityCollection
this.m_SniTanuloNevelesiFormaTipus = null; // EntityCollection
this.m_LepEloadasJegyzek = null; // EntityCollection
this.m_AdattisztitasStatisztika = null; // EntityCollection
this.m_AranyJanosProgramTipus = null; // EntityCollection
this.m_LepEloadas = null; // EntityCollection
this.m_TantargyNyelv = null; // EntityCollection
this.m_OraSorszamozasHalmazOsszerendeles = null; // EntityCollection
this.m_OraSorszamozasHalmaz = null; // EntityCollection
this.m_TanuloEsemenyNyelv = null; // EntityCollection
this.m_DictionaryItemBaseNyelv = null; // EntityCollection
this.m_ErtekelesMondatbankNyelv = null; // EntityCollection
this.m_TanuloErtekelesNyelv = null; // EntityCollection
this.m_TanuloKozossegiSzolgalatNyelv = null; // EntityCollection
this.m_IktatottDokumentumTavollet = null; // EntityCollection
this.m_TanuloHaziFeladatStatusz = null; // EntityCollection
this.m_Csatolmany = null; // EntityCollection
this.m_TanterviJellemzoTipus = null; // EntityCollection
this.m_HaziFeladatCsatolmany = null; // EntityCollection
this.m_AmiJellemzoTipus = null; // EntityCollection
this.m_BankszamlaTulajdonosTipus = null; // EntityCollection
this.m_JogviszonyTipus = null; // EntityCollection
this.m_JuttatasTipus = null; // EntityCollection
this.m_Juttatas = null; // EntityCollection
this.m_TanuloTantargyAtlag = null; // EntityCollection
this.m_SzakmairanyTipus = null; // EntityCollection
this.m_TanuloSni = null; // EntityCollection
this.m_SzakmaTipus = null; // EntityCollection
this.m_AgazatUjSzktTipus = null; // EntityCollection
this.m_Tovabbkepzes = null; // EntityCollection
this.m_EgyebTevekenysegekTipus = null; // EntityCollection
this.m_MunkaugyTorvenyiHatalyTipus = null; // EntityCollection
this.m_DKT_Feladat = null; // EntityCollection
this.m_DKT_FeladatFile = null; // EntityCollection
this.m_DKT_File = null; // EntityCollection
this.m_AlkalmazottMunkaKorTipus = null; // EntityCollection
this.m_EgyHaztartasbanElok = null; // EntityCollection
this.m_SzirStatFile = null; // EntityCollection
this.m_JogviszonySzuneteltetes = null; // EntityCollection
this.m_File = null; // EntityCollection
this.m_KirSzirFeladatellatasiHely = null; // EntityCollection
this.m_SzirStatTipus = null; // EntityCollection
this.m_OraFile = null; // EntityCollection
this.m_ZaradekNyelv = null; // EntityCollection
this.m_OraFileTipus = null; // EntityCollection
this.m_Zaradek = null; // EntityCollection
this.m_ProfilkepFile = null; // EntityCollection
this.m_SzakiranyNktTipus = null; // EntityCollection
this.m_TulajdonTipus = null; // EntityCollection
this.m_TanulmanyiTeruletNktTipus = null; // EntityCollection
this.m_SzakkepesitesNktTipus = null; // EntityCollection
this.m_DigEszkozTipus = null; // EntityCollection
this.m_DigPlatformTipus = null; // EntityCollection
this.m_DigTamEszkozTipus = null; // EntityCollection
this.m_TanitasiOraDigTamEszkoz = null; // EntityCollection
this.m_IktatottDokumentumCsatolmany = null; // EntityCollection
this.m_EpjTanuloiAdat = null; // EntityCollection
this.m_DualisSzerzodesFile = null; // EntityCollection
this.m_MufajTipus = null; // EntityCollection
this.m_TanszakTipus = null; // EntityCollection
this.m_NemzetisegTipus = null; // EntityCollection
this.m_FelekezetTipus = null; // EntityCollection
this.m_TKJogalapTipus = null; // EntityCollection
this.m_TartozkodasJogcimTipus = null; // EntityCollection
this.m_TartJogOkmanyTipus = null; // EntityCollection
this.m_KepesitesTipus = null; // EntityCollection
this.m_SzirStatTanulo = null; // EntityCollection
this.m_SzirStatFeladatellatasiHely = null; // EntityCollection
this.m_FogyatekossagTipus = null; // EntityCollection
this.m_OgOrarend = null; // EntityCollection
this.m_SzirStatKonyvtar = null; // EntityCollection
this.m_EszkozIgenyles = null; // EntityCollection
this.m_SzakmaReszSzakmaTipus = null; // EntityCollection
this.m_AgazatReszSzakmaTipus = null; // EntityCollection
this.m_ReszSzakmaTipus = null; // EntityCollection
this.m_MunkaSzerzodes = null; // EntityCollection
this.m_EszkozIgenylesStatusz = null; // EntityCollection
this.m_JogvMegszuneseJogcimTipus = null; // EntityCollection
this.m_TbJogviszonyTipus = null; // EntityCollection
this.m_TbJogviszony = null; // EntityCollection
this.m_AgazatAlapOktMegnevTipus = null; // EntityCollection
this.m_JogvKeletkezeseJogcimTipus = null; // EntityCollection
this.m_AgazatAlapVizsgaEredTipus = null; // EntityCollection
this.m_ErtekelesTantargyi = null; // EntityCollection
this.m_ErtekelesMagSzorNyelv = null; // EntityCollection
this.m_ErtekelesMagSzor = null; // EntityCollection
this.m_ErtekelesTantargyiNyelv = null; // EntityCollection
this.m_Szervezet = null; // EntityCollection
this.m_UjSzktSzakmajegyzekOsszerendeles = null; // EntityCollection
this.m_NktOsszerendeles = null; // EntityCollection
this.m_RegiSzktOsszerendeles = null; // EntityCollection
this.m_UjSzktReszszakmaOsszerendeles = null; // EntityCollection
this.m_DualisHelyszinTipus = null; // EntityCollection
this.m_SzirStatNemAllamiOktKolts = null; // EntityCollection
this.m_ApaczaiKgrJogosult = null; // EntityCollection
this.m_SzakmunkaSzerzodes = null; // EntityCollection
this.m_NyugdijTipus = null; // EntityCollection
this.m_TanulasiEgyseg = null; // EntityCollection
}
#endregion
protected override void DeAssociateBeforeDelete(bool runHandler = false)
{
// Nem kaszkád törölhető asszociációk ellenőrzése, hogy üresek-e...
if (this.FelvettTanulok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FelvettTanulok", EntityUtil.GetAssociationDescription("T_TANULO_OSSZES", "C_FELVETELTANEVEID")); // nincs kapcsolotabla
}
if (this.IntezmenyAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IntezmenyAdatok", EntityUtil.GetAssociationDescription("T_INTEZMENYADATOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
// Intezmeny esetében mi mutatunk a másikra: startrole: *, endrole: 1
if (this.IntezmenyAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IntezmenyAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_INTEZMENYADATSZOLGALTATAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.FelvettTanulokTanugyiAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FelvettTanulokTanugyiAdatok", EntityUtil.GetAssociationDescription("T_TANULOTANUGYIADATOK_OSSZES", "C_FELVETELTANEVEID")); // nincs kapcsolotabla
}
if (this.Felhasznalo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Felhasznalo", EntityUtil.GetAssociationDescription("T_FELHASZNALO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Email.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Email", EntityUtil.GetAssociationDescription("T_EMAIL_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Cim.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Cim", EntityUtil.GetAssociationDescription("T_CIM_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Szerepkor.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Szerepkor", EntityUtil.GetAssociationDescription("T_SZEREPKOR_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Telefon.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Telefon", EntityUtil.GetAssociationDescription("T_TELEFON_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DictionaryItemBase.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DictionaryItemBase", EntityUtil.GetAssociationDescription("T_DICTIONARYITEMBASE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Nem.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Nem", EntityUtil.GetAssociationDescription("T_NEM_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.CimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "CimTipus", EntityUtil.GetAssociationDescription("T_CIMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Allampolgarsag.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Allampolgarsag", EntityUtil.GetAssociationDescription("T_ALLAMPOLGARSAG_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TelefonTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TelefonTipus", EntityUtil.GetAssociationDescription("T_TELEFONTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EmailTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EmailTipus", EntityUtil.GetAssociationDescription("T_EMAILTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EsemenyStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EsemenyStatusz", EntityUtil.GetAssociationDescription("T_ESEMENYSTATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OrszagTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OrszagTipus", EntityUtil.GetAssociationDescription("T_ORSZAGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MunkaviszonyJellege.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MunkaviszonyJellege", EntityUtil.GetAssociationDescription("T_MUNKAVISZONYJELLEGE_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DiakigazolvanyIgenyStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DiakigazolvanyIgenyStatusz", EntityUtil.GetAssociationDescription("T_DIAKIGAZOLVANYIGENYSTATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.UserProfile.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "UserProfile", EntityUtil.GetAssociationDescription("T_USERPROFILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KozteruletJelleg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KozteruletJelleg", EntityUtil.GetAssociationDescription("T_KOZTERULETJELLEG_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DiakigazolvanyIgenyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DiakigazolvanyIgenyTipus", EntityUtil.GetAssociationDescription("T_DIAKIGAZOLVANYIGENYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Honapok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Honapok", EntityUtil.GetAssociationDescription("T_HONAPOK_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FelhasznaloBelepesTortenet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FelhasznaloBelepesTortenet", EntityUtil.GetAssociationDescription("T_FELHASZNALOBELEPESTORTENET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Megye.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Megye", EntityUtil.GetAssociationDescription("T_MEGYE_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Log.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Log", EntityUtil.GetAssociationDescription("T_LOG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.FelhasznaloBelepes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FelhasznaloBelepes", EntityUtil.GetAssociationDescription("T_FELHASZNALOBELEPES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MagantanulosagOka.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MagantanulosagOka", EntityUtil.GetAssociationDescription("T_MAGANTANULOSAGOKA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TeremTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TeremTipus", EntityUtil.GetAssociationDescription("T_TEREMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.IngyenesTankonyvEllatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IngyenesTankonyvEllatas", EntityUtil.GetAssociationDescription("T_INGYENESTANKONYVELLATAS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Eszkoz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Eszkoz", EntityUtil.GetAssociationDescription("T_ESZKOZ_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EszkozKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EszkozKategoria", EntityUtil.GetAssociationDescription("T_ESZKOZKATEGORIA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EszkozTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EszkozTipus", EntityUtil.GetAssociationDescription("T_ESZKOZTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Terem.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Terem", EntityUtil.GetAssociationDescription("T_TEREM_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MunkaviszonyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MunkaviszonyTipus", EntityUtil.GetAssociationDescription("T_MUNKAVISZONYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.IgazolvanyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IgazolvanyTipus", EntityUtil.GetAssociationDescription("T_IGAZOLVANYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Anyanyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Anyanyelv", EntityUtil.GetAssociationDescription("T_ANYANYELV_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Alkalmazott.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Alkalmazott", EntityUtil.GetAssociationDescription("T_ALKALMAZOTT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MukodesiHely.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MukodesiHely", EntityUtil.GetAssociationDescription("T_MUKODESIHELY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MunkakorTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MunkakorTipus", EntityUtil.GetAssociationDescription("T_MUNKAKORTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Gondviselo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Gondviselo", EntityUtil.GetAssociationDescription("T_GONDVISELO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Tanulo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Tanulo", EntityUtil.GetAssociationDescription("T_TANULO_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.RokonsagiFok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "RokonsagiFok", EntityUtil.GetAssociationDescription("T_ROKONSAGIFOK_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.CsoportTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "CsoportTipus", EntityUtil.GetAssociationDescription("T_CSOPORTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FenntartoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FenntartoTipus", EntityUtil.GetAssociationDescription("T_FENNTARTOTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MertekegysegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MertekegysegTipus", EntityUtil.GetAssociationDescription("T_MERTEKEGYSEGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EszkozCel.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EszkozCel", EntityUtil.GetAssociationDescription("T_ESZKOZCEL_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Csoport.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Csoport", EntityUtil.GetAssociationDescription("T_CSOPORT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EszkozJelleg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EszkozJelleg", EntityUtil.GetAssociationDescription("T_ESZKOZJELLEG_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TestnevelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TestnevelesTipus", EntityUtil.GetAssociationDescription("T_TESTNEVELESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanterviJelleg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanterviJelleg", EntityUtil.GetAssociationDescription("T_TANTERVIJELLEG_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Osztaly.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Osztaly", EntityUtil.GetAssociationDescription("T_OSZTALY_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OsztalyCsoport.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OsztalyCsoport", EntityUtil.GetAssociationDescription("T_OSZTALYCSOPORT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Vallas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Vallas", EntityUtil.GetAssociationDescription("T_VALLAS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.HatranyosHelyzetTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HatranyosHelyzetTipus", EntityUtil.GetAssociationDescription("T_HATRANYOSHELYZETTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EtkezesiKedvezmenyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EtkezesiKedvezmenyTipus", EntityUtil.GetAssociationDescription("T_ETKEZESIKEDVEZMENYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.LatasserultTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "LatasserultTipus", EntityUtil.GetAssociationDescription("T_LATASSERULTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.HallasserultTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HallasserultTipus", EntityUtil.GetAssociationDescription("T_HALLASSERULTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErtelmiFogyatekosTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtelmiFogyatekosTipus", EntityUtil.GetAssociationDescription("T_ERTELMIFOGYATEKOSTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OktatasiNevelesiFeladat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OktatasiNevelesiFeladat", EntityUtil.GetAssociationDescription("T_OKTATASINEVELESIFELADAT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Tanterv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Tanterv", EntityUtil.GetAssociationDescription("T_TANTERV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Tantargy.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Tantargy", EntityUtil.GetAssociationDescription("T_TANTARGY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EvfolyamTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EvfolyamTipus", EntityUtil.GetAssociationDescription("T_EVFOLYAMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TargyKategoriaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TargyKategoriaTipus", EntityUtil.GetAssociationDescription("T_TARGYKATEGORIATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Foglalkozas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Foglalkozas", EntityUtil.GetAssociationDescription("T_FOGLALKOZAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.FoglalkozasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FoglalkozasTipus", EntityUtil.GetAssociationDescription("T_FOGLALKOZASTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.NapTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NapTipus", EntityUtil.GetAssociationDescription("T_NAPTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.HetiRendTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HetiRendTipus", EntityUtil.GetAssociationDescription("T_HETIRENDTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanevRendje.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanevRendje", EntityUtil.GetAssociationDescription("T_TANEVRENDJE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.HetNapjaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HetNapjaTipus", EntityUtil.GetAssociationDescription("T_HETNAPJATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.CsengetesiRend.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "CsengetesiRend", EntityUtil.GetAssociationDescription("T_CSENGETESIREND_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloCsoport.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloCsoport", EntityUtil.GetAssociationDescription("T_TANULOCSOPORT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OrarendiOra.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OrarendiOra", EntityUtil.GetAssociationDescription("T_ORARENDIORA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Tanmenet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Tanmenet", EntityUtil.GetAssociationDescription("T_TANMENET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.NaptariNap.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NaptariNap", EntityUtil.GetAssociationDescription("T_NAPTARINAP_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.HelyettesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HelyettesitesTipus", EntityUtil.GetAssociationDescription("T_HELYETTESITESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanitasiOra.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanitasiOra", EntityUtil.GetAssociationDescription("T_TANITASIORA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloErtekeles.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloErtekeles", EntityUtil.GetAssociationDescription("T_TANULOERTEKELES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesTipus", EntityUtil.GetAssociationDescription("T_ERTEKELESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OsztalyzatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OsztalyzatTipus", EntityUtil.GetAssociationDescription("T_OSZTALYZATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesMod.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesMod", EntityUtil.GetAssociationDescription("T_ERTEKELESMOD_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanuloMulasztas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloMulasztas", EntityUtil.GetAssociationDescription("T_TANULOMULASZTAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MulasztasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MulasztasTipus", EntityUtil.GetAssociationDescription("T_MULASZTASTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.CsengetesiRendOra.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "CsengetesiRendOra", EntityUtil.GetAssociationDescription("T_CSENGETESIRENDORA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.IgazolasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IgazolasTipus", EntityUtil.GetAssociationDescription("T_IGAZOLASTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EsemenyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EsemenyTipus", EntityUtil.GetAssociationDescription("T_ESEMENYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanuloEsemeny.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloEsemeny", EntityUtil.GetAssociationDescription("T_TANULOESEMENY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzorgalomErtekelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzorgalomErtekelesTipus", EntityUtil.GetAssociationDescription("T_SZORGALOMERTEKELESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MagatartasErtekelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MagatartasErtekelesTipus", EntityUtil.GetAssociationDescription("T_MAGATARTASERTEKELESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Oralatogatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Oralatogatas", EntityUtil.GetAssociationDescription("T_ORALATOGATAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Igazolas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Igazolas", EntityUtil.GetAssociationDescription("T_IGAZOLAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.NaploEllenorzes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NaploEllenorzes", EntityUtil.GetAssociationDescription("T_NAPLOELLENORZES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloMentesseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloMentesseg", EntityUtil.GetAssociationDescription("T_TANULOMENTESSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EletpalyamodellStatuszok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EletpalyamodellStatuszok", EntityUtil.GetAssociationDescription("T_ELETPALYAMODELLSTATUSZOK_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EletpalyamodellFokozatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EletpalyamodellFokozatTipus", EntityUtil.GetAssociationDescription("T_ELETPALYAMODELLFOKOZATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.PedagogusEletpalyamodell.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "PedagogusEletpalyamodell", EntityUtil.GetAssociationDescription("T_PEDAGOGUSELETPALYAMODELL_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TevekenysegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TevekenysegTipus", EntityUtil.GetAssociationDescription("T_TEVEKENYSEGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErtesitesSzinTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtesitesSzinTipus", EntityUtil.GetAssociationDescription("T_ERTESITESSZINTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErtesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtesitesTipus", EntityUtil.GetAssociationDescription("T_ERTESITESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Ertesites.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Ertesites", EntityUtil.GetAssociationDescription("T_ERTESITES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErtesitesGeneralasTortenet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtesitesGeneralasTortenet", EntityUtil.GetAssociationDescription("T_ERTESITESGENERALASTORTENET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanariAtlagSuly.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanariAtlagSuly", EntityUtil.GetAssociationDescription("T_TANARIATLAGSULY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KizaroCsoportTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KizaroCsoportTipus", EntityUtil.GetAssociationDescription("T_KIZAROCSOPORTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OraTerv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OraTerv", EntityUtil.GetAssociationDescription("T_ORATERV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.RendszerBeallitas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "RendszerBeallitas", EntityUtil.GetAssociationDescription("T_RENDSZERBEALLITAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OraTervTargy.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OraTervTargy", EntityUtil.GetAssociationDescription("T_ORATERVTARGY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.RendszerBeallitasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "RendszerBeallitasTipus", EntityUtil.GetAssociationDescription("T_RENDSZERBEALLITASTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FeladatEllatasiHely.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FeladatEllatasiHely", EntityUtil.GetAssociationDescription("T_FELADATELLATASIHELY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OldalLatogatottsag.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OldalLatogatottsag", EntityUtil.GetAssociationDescription("T_OLDALLATOGATOTTSAG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MulasztasStatisztikaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MulasztasStatisztikaTipus", EntityUtil.GetAssociationDescription("T_MULASZTASSTATISZTIKATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SystemSettingsControlType.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SystemSettingsControlType", EntityUtil.GetAssociationDescription("T_SYSTEMSETTINGSCONTROLTYPE_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MunkaugyiAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MunkaugyiAdatok", EntityUtil.GetAssociationDescription("T_MUNKAUGYIADATOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.RendszerErtesitesek.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "RendszerErtesitesek", EntityUtil.GetAssociationDescription("T_RENDSZERERTESITESEK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloKozossegiSzolgalat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloKozossegiSzolgalat", EntityUtil.GetAssociationDescription("T_TANULOKOZOSSEGISZOLGALAT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzerepkorTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzerepkorTipus", EntityUtil.GetAssociationDescription("T_SZEREPKORTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Jogosultsag.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Jogosultsag", EntityUtil.GetAssociationDescription("T_JOGOSULTSAG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentumok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IktatottDokumentumok", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUMOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.HelyettesitesiIdoszak.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HelyettesitesiIdoszak", EntityUtil.GetAssociationDescription("T_HELYETTESITESIIDOSZAK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.NaptariHet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NaptariHet", EntityUtil.GetAssociationDescription("T_NAPTARIHET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KretaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KretaTipus", EntityUtil.GetAssociationDescription("T_KRETATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.PedagogusStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "PedagogusStatusz", EntityUtil.GetAssociationDescription("T_PEDAGOGUSSTATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.BesorolasiFokozatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BesorolasiFokozatTipus", EntityUtil.GetAssociationDescription("T_BESOROLASIFOKOZATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MunkaidoKedvezmenyOka.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MunkaidoKedvezmenyOka", EntityUtil.GetAssociationDescription("T_MUNKAIDOKEDVEZMENYOKA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KirTelephely.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KirTelephely", EntityUtil.GetAssociationDescription("T_KIRTELEPHELY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.CsoportTipus_FoglalkozasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "CsoportTipus_FoglalkozasTipus", EntityUtil.GetAssociationDescription("T_CSOPORTTIPUS_FOGLALKOZASTIPU_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SorolasOkaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SorolasOkaTipus", EntityUtil.GetAssociationDescription("T_SOROLASOKATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FoglalkozasArchiv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FoglalkozasArchiv", EntityUtil.GetAssociationDescription("T_FOGLALKOZASARCHIV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ESLAdatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ESLAdatTipus", EntityUtil.GetAssociationDescription("T_ESLADATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanuloESLAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloESLAdatok", EntityUtil.GetAssociationDescription("T_TANULOESLADATOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ESLAdat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ESLAdat", EntityUtil.GetAssociationDescription("T_ESLADAT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.NemKotottMunkaido.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NemKotottMunkaido", EntityUtil.GetAssociationDescription("T_NEMKOTOTTMUNKAIDO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ENaploInfra.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ENaploInfra", EntityUtil.GetAssociationDescription("T_ENAPLOINFRA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.AdatszolgaltatasENaplo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AdatszolgaltatasENaplo", EntityUtil.GetAssociationDescription("T_ADATSZOLGALTATASENAPLO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ENaploForras.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ENaploForras", EntityUtil.GetAssociationDescription("T_ENAPLOFORRAS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ENaploTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ENaploTipus", EntityUtil.GetAssociationDescription("T_ENAPLOTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SzerzodoSzemelyPozicio.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzerzodoSzemelyPozicio", EntityUtil.GetAssociationDescription("T_SZERZODOSZEMELYPOZICIO_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Forras.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Forras", EntityUtil.GetAssociationDescription("T_FORRAS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Prioritas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Prioritas", EntityUtil.GetAssociationDescription("T_PRIORITAS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.HibajegyStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HibajegyStatusz", EntityUtil.GetAssociationDescription("T_HIBAJEGYSTATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OsszegTullepesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OsszegTullepesTipus", EntityUtil.GetAssociationDescription("T_OSSZEGTULLEPESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Idokeret.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Idokeret", EntityUtil.GetAssociationDescription("T_IDOKERET_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FelvetelStatuszaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FelvetelStatuszaTipus", EntityUtil.GetAssociationDescription("T_FELVETELSTATUSZATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Nebulo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Nebulo", EntityUtil.GetAssociationDescription("T_NEBULO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TagozatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TagozatTipus", EntityUtil.GetAssociationDescription("T_TAGOZATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ENaploHasznalat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ENaploHasznalat", EntityUtil.GetAssociationDescription("T_ENAPLOHASZNALAT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.IKTKompetenciaSzint.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IKTKompetenciaSzint", EntityUtil.GetAssociationDescription("T_IKTKOMPETENCIASZINT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.WiFiEleres.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "WiFiEleres", EntityUtil.GetAssociationDescription("T_WIFIELERES_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.PedagogusIKTAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "PedagogusIKTAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_PEDAGOGUSIKTADATSZOLGALTATAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ElsodlegesIKTEszkoz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ElsodlegesIKTEszkoz", EntityUtil.GetAssociationDescription("T_ELSODLEGESIKTESZKOZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.IKTEszkozhasznalatMod.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IKTEszkozhasznalatMod", EntityUtil.GetAssociationDescription("T_IKTESZKOZHASZNALATMOD_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MukodesiHelyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MukodesiHelyTipus", EntityUtil.GetAssociationDescription("T_MUKODESIHELYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SzakkepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakkepesitesTipus", EntityUtil.GetAssociationDescription("T_SZAKKEPESITESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SzakmacsoportTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakmacsoportTipus", EntityUtil.GetAssociationDescription("T_SZAKMACSOPORTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.AgazatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AgazatTipus", EntityUtil.GetAssociationDescription("T_AGAZATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ReszszakkepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ReszszakkepesitesTipus", EntityUtil.GetAssociationDescription("T_RESZSZAKKEPESITESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TovabbiMunkaugyiAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TovabbiMunkaugyiAdatok", EntityUtil.GetAssociationDescription("T_TOVABBIMUNKAUGYIADATOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErettsegiTantargy.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErettsegiTantargy", EntityUtil.GetAssociationDescription("T_ERETTSEGITANTARGY_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErettsegiTantargyAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErettsegiTantargyAdatok", EntityUtil.GetAssociationDescription("T_ERETTSEGITANTARGYADATOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErettsegiEredmeny.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErettsegiEredmeny", EntityUtil.GetAssociationDescription("T_ERETTSEGIEREDMENY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErettsegiTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErettsegiTipus", EntityUtil.GetAssociationDescription("T_ERETTSEGITIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErettsegiSzint.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErettsegiSzint", EntityUtil.GetAssociationDescription("T_ERETTSEGISZINT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FoglalkoztatasTipusa.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FoglalkoztatasTipusa", EntityUtil.GetAssociationDescription("T_FOGLALKOZTATASTIPUSA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.VezetoiOraszamokTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "VezetoiOraszamokTipus", EntityUtil.GetAssociationDescription("T_VEZETOIORASZAMOKTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.IntezmenyEszkozAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IntezmenyEszkozAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_INTEZMENYESZKOZADATSZOLGALTA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MukodesiHelyAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MukodesiHelyAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_MUKODESIHELYADATSZOLGALTATAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KozossegiSzolgalatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KozossegiSzolgalatTipus", EntityUtil.GetAssociationDescription("T_KOZOSSEGISZOLGALATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesMondatbank.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesMondatbank", EntityUtil.GetAssociationDescription("T_ERTEKELESMONDATBANK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.NATKerdoiv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NATKerdoiv", EntityUtil.GetAssociationDescription("T_NATKERDOIV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanitasiOraTulajdonsag.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanitasiOraTulajdonsag", EntityUtil.GetAssociationDescription("T_TANITASIORATULAJDONSAG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OraTulajdonsagTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OraTulajdonsagTipus", EntityUtil.GetAssociationDescription("T_ORATULAJDONSAGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OrarendiOraTulajdonsag.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OrarendiOraTulajdonsag", EntityUtil.GetAssociationDescription("T_ORARENDIORATULAJDONSAG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloMulasztasLattamozas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloMulasztasLattamozas", EntityUtil.GetAssociationDescription("T_TANULOMULASZTASLATTAMOZAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloEsemenyLattamozas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloEsemenyLattamozas", EntityUtil.GetAssociationDescription("T_TANULOESEMENYLATTAMOZAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloErtekelesLattamozas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloErtekelesLattamozas", EntityUtil.GetAssociationDescription("T_TANULOERTEKELESLATTAMOZAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DictionaryType.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DictionaryType", EntityUtil.GetAssociationDescription("T_DICTIONARYTYPE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.eLearning.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "eLearning", EntityUtil.GetAssociationDescription("T_ELEARNING_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.VegzettsegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "VegzettsegTipus", EntityUtil.GetAssociationDescription("T_VEGZETTSEGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.HaziFeladatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HaziFeladatok", EntityUtil.GetAssociationDescription("T_HAZIFELADATOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.HittanTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HittanTipus", EntityUtil.GetAssociationDescription("T_HITTANTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.HittanAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HittanAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_HITTANADATSZOLGALTATAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.JelszoVisszaallitas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "JelszoVisszaallitas", EntityUtil.GetAssociationDescription("T_JELSZOVISSZAALLITAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KozmuSzamlaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KozmuSzamlaTipus", EntityUtil.GetAssociationDescription("T_KOZMUSZAMLATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Merohely.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Merohely", EntityUtil.GetAssociationDescription("T_MEROHELY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KozmuSzamla.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KozmuSzamla", EntityUtil.GetAssociationDescription("T_KOZMUSZAMLA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MerohelyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MerohelyTipus", EntityUtil.GetAssociationDescription("T_MEROHELYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Meroallas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Meroallas", EntityUtil.GetAssociationDescription("T_MEROALLAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.PenznemTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "PenznemTipus", EntityUtil.GetAssociationDescription("T_PENZNEMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Licence.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Licence", EntityUtil.GetAssociationDescription("T_LICENCE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.LicenceFunkciokTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "LicenceFunkciokTipus", EntityUtil.GetAssociationDescription("T_LICENCEFUNKCIOKTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErettsegiKerdes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErettsegiKerdes", EntityUtil.GetAssociationDescription("T_ERETTSEGIKERDES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErettsegiValasz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErettsegiValasz", EntityUtil.GetAssociationDescription("T_ERETTSEGIVALASZ_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloHaziFeladat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloHaziFeladat", EntityUtil.GetAssociationDescription("T_TANULOHAZIFELADAT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Vegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Vegzettseg", EntityUtil.GetAssociationDescription("T_VEGZETTSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Kepesites.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Kepesites", EntityUtil.GetAssociationDescription("T_KEPESITES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.GimnaziumiEvfolyamTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "GimnaziumiEvfolyamTipus", EntityUtil.GetAssociationDescription("T_GIMNAZIUMIEVFOLYAMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SzakTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakTipus", EntityUtil.GetAssociationDescription("T_SZAKTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KirSzolgaltatasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KirSzolgaltatasTipus", EntityUtil.GetAssociationDescription("T_KIRSZOLGALTATASTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KIRKontenerElem.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KIRKontenerElem", EntityUtil.GetAssociationDescription("T_KIRKONTENERELEM_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KIRKontenerStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KIRKontenerStatusz", EntityUtil.GetAssociationDescription("T_KIRKONTENERSTATUSZ_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KIRKontener.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KIRKontener", EntityUtil.GetAssociationDescription("T_KIRKONTENER_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KIRKontenerElemStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KIRKontenerElemStatusz", EntityUtil.GetAssociationDescription("T_KIRKONTENERELEMSTATUSZ_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OsszefuggoSzakGyak.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OsszefuggoSzakGyak", EntityUtil.GetAssociationDescription("T_OSSZEFUGGOSZAKGYAK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKAMIZenemuvKatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMIZenemuvKatTipus", EntityUtil.GetAssociationDescription("T_KKAMIZENEMUVKATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKSzakTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKSzakTipus", EntityUtil.GetAssociationDescription("T_KKSZAKTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKKepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKKepesitesTipus", EntityUtil.GetAssociationDescription("T_KKKEPESITESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKGyogypedTerTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKGyogypedTerTipus", EntityUtil.GetAssociationDescription("T_KKGYOGYPEDTERTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKAMIKlasszikusTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMIKlasszikusTipus", EntityUtil.GetAssociationDescription("T_KKAMIKLASSZIKUSTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKTanitoMuvTerTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKTanitoMuvTerTipus", EntityUtil.GetAssociationDescription("T_KKTANITOMUVTERTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKAMIJazzZeneTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMIJazzZeneTipus", EntityUtil.GetAssociationDescription("T_KKAMIJAZZZENETIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKAMITeruletTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMITeruletTipus", EntityUtil.GetAssociationDescription("T_KKAMITERULETTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKAMIVegzettsegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMIVegzettsegTipus", EntityUtil.GetAssociationDescription("T_KKAMIVEGZETTSEGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKAMIElektroakuTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMIElektroakuTipus", EntityUtil.GetAssociationDescription("T_KKAMIELEKTROAKUTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKAMINepzeneTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMINepzeneTipus", EntityUtil.GetAssociationDescription("T_KKAMINEPZENETIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKVegzettsegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKVegzettsegTipus", EntityUtil.GetAssociationDescription("T_KKVEGZETTSEGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKTanitoVezgettseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKTanitoVezgettseg", EntityUtil.GetAssociationDescription("T_KKTANITOVEZGETTSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKTanarVegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKTanarVegzettseg", EntityUtil.GetAssociationDescription("T_KKTANARVEGZETTSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKTerulet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKTerulet", EntityUtil.GetAssociationDescription("T_KKTERULET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKElektroakuZene.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKElektroakuZene", EntityUtil.GetAssociationDescription("T_KKELEKTROAKUZENE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKNepzene.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKNepzene", EntityUtil.GetAssociationDescription("T_KKNEPZENE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKGyogypedVegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKGyogypedVegzettseg", EntityUtil.GetAssociationDescription("T_KKGYOGYPEDVEGZETTSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKAMIVegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKAMIVegzettseg", EntityUtil.GetAssociationDescription("T_KKAMIVEGZETTSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKKlasszikusZene.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKKlasszikusZene", EntityUtil.GetAssociationDescription("T_KKKLASSZIKUSZENE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKJazzZene.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKJazzZene", EntityUtil.GetAssociationDescription("T_KKJAZZZENE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KKKepesitesJellTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKKepesitesJellTipus", EntityUtil.GetAssociationDescription("T_KKKEPESITESJELLTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KKTantargyKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KKTantargyKategoria", EntityUtil.GetAssociationDescription("T_KKTANTARGYKATEGORIA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErtMondatbankTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtMondatbankTipus", EntityUtil.GetAssociationDescription("T_ERTMONDATBANKTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Diakolimpia.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Diakolimpia", EntityUtil.GetAssociationDescription("T_DIAKOLIMPIA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.JelszoModositasLink.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "JelszoModositasLink", EntityUtil.GetAssociationDescription("T_JELSZOMODOSITASLINK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DokumentumKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DokumentumKategoria", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKATEGORIA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DokumentumKulcsszoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DokumentumKulcsszoTipus", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKULCSSZOTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DokumentumStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DokumentumStatusz", EntityUtil.GetAssociationDescription("T_DOKUMENTUMSTATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DokumentumTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DokumentumTipus", EntityUtil.GetAssociationDescription("T_DOKUMENTUMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DokumentumKulcsszo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DokumentumKulcsszo", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKULCSSZO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentum.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IktatottDokumentum", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUM_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DokumentumKulcsszoErtek.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DokumentumKulcsszoErtek", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKULCSSZOERTEK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Dokumentum.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Dokumentum", EntityUtil.GetAssociationDescription("T_DOKUMENTUM_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OktNevelesiKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OktNevelesiKategoria", EntityUtil.GetAssociationDescription("T_OKTNEVELESIKATEGORIA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ElearningElerhetoseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ElearningElerhetoseg", EntityUtil.GetAssociationDescription("T_ELEARNINGELERHETOSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Fogadoora.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Fogadoora", EntityUtil.GetAssociationDescription("T_FOGADOORA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.FogadooraIdopont.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FogadooraIdopont", EntityUtil.GetAssociationDescription("T_FOGADOORAIDOPONT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Fogadoora_OsztalyCsoport.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Fogadoora_OsztalyCsoport", EntityUtil.GetAssociationDescription("T_FOGADOORA_OSZTALYCSOPORT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.FogadooraIdopont_Gondviselo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FogadooraIdopont_Gondviselo", EntityUtil.GetAssociationDescription("T_FOGADOORAIDOPONT_GONDVISELO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DokumentumElemiSzint.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DokumentumElemiSzint", EntityUtil.GetAssociationDescription("T_DOKUMENTUMELEMISZINT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Kurzus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Kurzus", EntityUtil.GetAssociationDescription("T_KURZUS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ElvegzettKurzus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ElvegzettKurzus", EntityUtil.GetAssociationDescription("T_ELVEGZETTKURZUS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloTanugyiAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloTanugyiAdatok", EntityUtil.GetAssociationDescription("T_TANULOTANUGYIADATOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TeremElerhetoseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TeremElerhetoseg", EntityUtil.GetAssociationDescription("T_TEREMELERHETOSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TavolletStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TavolletStatusz", EntityUtil.GetAssociationDescription("T_TAVOLLETSTATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TavolletTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TavolletTipus", EntityUtil.GetAssociationDescription("T_TAVOLLETTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ESLTantargykategoria.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ESLTantargykategoria", EntityUtil.GetAssociationDescription("T_ESLTANTARGYKATEGORIA_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TavolletJelento.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TavolletJelento", EntityUtil.GetAssociationDescription("T_TAVOLLETJELENTO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.FeltoltottFajl.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FeltoltottFajl", EntityUtil.GetAssociationDescription("T_FELTOLTOTTFAJL_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ZenemuveszetiAgTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ZenemuveszetiAgTipus", EntityUtil.GetAssociationDescription("T_ZENEMUVESZETIAGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MuveszetiAg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MuveszetiAg", EntityUtil.GetAssociationDescription("T_MUVESZETIAG_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SAPTavollet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SAPTavollet", EntityUtil.GetAssociationDescription("T_SAPTAVOLLET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzamonkeresElorejelzes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzamonkeresElorejelzes", EntityUtil.GetAssociationDescription("T_SZAMONKERESELOREJELZES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EugyintezesLog.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EugyintezesLog", EntityUtil.GetAssociationDescription("T_EUGYINTEZESLOG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.AMITagozat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AMITagozat", EntityUtil.GetAssociationDescription("T_AMITAGOZAT_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.AMITantargyKotelezoseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AMITantargyKotelezoseg", EntityUtil.GetAssociationDescription("T_AMITANTARGYKOTELEZOSEG_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.AMIFotargy.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AMIFotargy", EntityUtil.GetAssociationDescription("T_AMIFOTARGY_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FoglalkozasAmiTanulo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FoglalkozasAmiTanulo", EntityUtil.GetAssociationDescription("T_FOGLALKOZASAMITANULO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ElearningFelhasznalo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ElearningFelhasznalo", EntityUtil.GetAssociationDescription("T_ELEARNINGFELHASZNALO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Terem_FeltoltottFajl.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Terem_FeltoltottFajl", EntityUtil.GetAssociationDescription("T_TEREM_FELTOLTOTTFAJL_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DashboardUzenetFelhasznalo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DashboardUzenetFelhasznalo", EntityUtil.GetAssociationDescription("T_DASHBOARDUZENETFELHASZNALO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MennyisegiEgyseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MennyisegiEgyseg", EntityUtil.GetAssociationDescription("T_MENNYISEGIEGYSEG_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgenySatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiIgenySatusz", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENYSATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiSzallito.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiSzallito", EntityUtil.GetAssociationDescription("T_BESZERZESISZALLITO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiAnyagtorzs.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiAnyagtorzs", EntityUtil.GetAssociationDescription("T_BESZERZESIANYAGTORZS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgenyDokumentum.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiIgenyDokumentum", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENYDOKUMENTUM_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiAnyag.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiAnyag", EntityUtil.GetAssociationDescription("T_BESZERZESIANYAG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiSzallitotorzs.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiSzallitotorzs", EntityUtil.GetAssociationDescription("T_BESZERZESISZALLITOTORZS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgeny.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiIgeny", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgenyMegjegyzes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BeszerzesiIgenyMegjegyzes", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENYMEGJEGYZES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Hetes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Hetes", EntityUtil.GetAssociationDescription("T_HETES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SniTanuloNevelesiFormaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SniTanuloNevelesiFormaTipus", EntityUtil.GetAssociationDescription("T_SNITANULONEVELESIFORMATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.LepEloadasJegyzek.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "LepEloadasJegyzek", EntityUtil.GetAssociationDescription("T_LEPELOADASJEGYZEK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.AdattisztitasStatisztika.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AdattisztitasStatisztika", EntityUtil.GetAssociationDescription("T_ADATTISZTITASSTATISZTIKA_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.AranyJanosProgramTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AranyJanosProgramTipus", EntityUtil.GetAssociationDescription("T_ARANYJANOSPROGRAMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.LepEloadas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "LepEloadas", EntityUtil.GetAssociationDescription("T_LEPELOADAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TantargyNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TantargyNyelv", EntityUtil.GetAssociationDescription("T_TANTARGYNYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OraSorszamozasHalmazOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OraSorszamozasHalmazOsszerendeles", EntityUtil.GetAssociationDescription("T_ORASORSZAMOZASHALMAZOSSZEREN_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OraSorszamozasHalmaz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OraSorszamozasHalmaz", EntityUtil.GetAssociationDescription("T_ORASORSZAMOZASHALMAZ_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloEsemenyNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloEsemenyNyelv", EntityUtil.GetAssociationDescription("T_TANULOESEMENYNYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DictionaryItemBaseNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DictionaryItemBaseNyelv", EntityUtil.GetAssociationDescription("T_DICTIONARYITEMBASENYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesMondatbankNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesMondatbankNyelv", EntityUtil.GetAssociationDescription("T_ERTEKELESMONDATBANKNYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloErtekelesNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloErtekelesNyelv", EntityUtil.GetAssociationDescription("T_TANULOERTEKELESNYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloKozossegiSzolgalatNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloKozossegiSzolgalatNyelv", EntityUtil.GetAssociationDescription("T_TANULOKOZOSSEGISZOLGALATNYEL_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentumTavollet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IktatottDokumentumTavollet", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUMTAVOLLET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloHaziFeladatStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloHaziFeladatStatusz", EntityUtil.GetAssociationDescription("T_TANULOHAZIFELADATSTATUSZ_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Csatolmany.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Csatolmany", EntityUtil.GetAssociationDescription("T_CSATOLMANY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanterviJellemzoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanterviJellemzoTipus", EntityUtil.GetAssociationDescription("T_TANTERVIJELLEMZOTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.HaziFeladatCsatolmany.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "HaziFeladatCsatolmany", EntityUtil.GetAssociationDescription("T_HAZIFELADATCSATOLMANY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.AmiJellemzoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AmiJellemzoTipus", EntityUtil.GetAssociationDescription("T_AMIJELLEMZOTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.BankszamlaTulajdonosTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "BankszamlaTulajdonosTipus", EntityUtil.GetAssociationDescription("T_BANKSZAMLATULAJDONOSTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.JogviszonyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "JogviszonyTipus", EntityUtil.GetAssociationDescription("T_JOGVISZONYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.JuttatasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "JuttatasTipus", EntityUtil.GetAssociationDescription("T_JUTTATASTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Juttatas.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Juttatas", EntityUtil.GetAssociationDescription("T_JUTTATAS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.TanuloTantargyAtlag.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloTantargyAtlag", EntityUtil.GetAssociationDescription("T_TANULOTANTARGYATLAG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzakmairanyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakmairanyTipus", EntityUtil.GetAssociationDescription("T_SZAKMAIRANYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanuloSni.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanuloSni", EntityUtil.GetAssociationDescription("T_TANULOSNI_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakmaTipus", EntityUtil.GetAssociationDescription("T_SZAKMATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.AgazatUjSzktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AgazatUjSzktTipus", EntityUtil.GetAssociationDescription("T_AGAZATUJSZKTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Tovabbkepzes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Tovabbkepzes", EntityUtil.GetAssociationDescription("T_TOVABBKEPZES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EgyebTevekenysegekTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EgyebTevekenysegekTipus", EntityUtil.GetAssociationDescription("T_EGYEBTEVEKENYSEGEKTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MunkaugyTorvenyiHatalyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MunkaugyTorvenyiHatalyTipus", EntityUtil.GetAssociationDescription("T_MUNKAUGYTORVENYIHATALYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DKT_Feladat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DKT_Feladat", EntityUtil.GetAssociationDescription("T_DKT_FELADAT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DKT_FeladatFile.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DKT_FeladatFile", EntityUtil.GetAssociationDescription("T_DKT_FELADATFILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DKT_File.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DKT_File", EntityUtil.GetAssociationDescription("T_DKT_FILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.AlkalmazottMunkaKorTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AlkalmazottMunkaKorTipus", EntityUtil.GetAssociationDescription("T_ALKALMAZOTTMUNKAKORTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.EgyHaztartasbanElok.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EgyHaztartasbanElok", EntityUtil.GetAssociationDescription("T_EGYHAZTARTASBANELOK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzirStatFile.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzirStatFile", EntityUtil.GetAssociationDescription("T_SZIRSTATFILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.JogviszonySzuneteltetes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "JogviszonySzuneteltetes", EntityUtil.GetAssociationDescription("T_JOGVISZONYSZUNETELTETES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.File.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "File", EntityUtil.GetAssociationDescription("T_FILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.KirSzirFeladatellatasiHely.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KirSzirFeladatellatasiHely", EntityUtil.GetAssociationDescription("T_KIRSZIRFELADATELLATASIHELY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzirStatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzirStatTipus", EntityUtil.GetAssociationDescription("T_SZIRSTATTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OraFile.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OraFile", EntityUtil.GetAssociationDescription("T_ORAFILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ZaradekNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ZaradekNyelv", EntityUtil.GetAssociationDescription("T_ZARADEKNYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.OraFileTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OraFileTipus", EntityUtil.GetAssociationDescription("T_ORAFILETIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.Zaradek.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Zaradek", EntityUtil.GetAssociationDescription("T_ZARADEK_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ProfilkepFile.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ProfilkepFile", EntityUtil.GetAssociationDescription("T_PROFILKEPFILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzakiranyNktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakiranyNktTipus", EntityUtil.GetAssociationDescription("T_SZAKIRANYNKTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TulajdonTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TulajdonTipus", EntityUtil.GetAssociationDescription("T_TULAJDONTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanulmanyiTeruletNktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanulmanyiTeruletNktTipus", EntityUtil.GetAssociationDescription("T_TANULMANYITERULETNKTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SzakkepesitesNktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakkepesitesNktTipus", EntityUtil.GetAssociationDescription("T_SZAKKEPESITESNKTTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DigEszkozTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DigEszkozTipus", EntityUtil.GetAssociationDescription("T_DIGESZKOZTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DigPlatformTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DigPlatformTipus", EntityUtil.GetAssociationDescription("T_DIGPLATFORMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.DigTamEszkozTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DigTamEszkozTipus", EntityUtil.GetAssociationDescription("T_DIGTAMESZKOZTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanitasiOraDigTamEszkoz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanitasiOraDigTamEszkoz", EntityUtil.GetAssociationDescription("T_TANITASIORADIGTAMESZKOZ_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentumCsatolmany.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "IktatottDokumentumCsatolmany", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUMCSATOLMANY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EpjTanuloiAdat.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EpjTanuloiAdat", EntityUtil.GetAssociationDescription("T_EPJTANULOIADAT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DualisSzerzodesFile.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DualisSzerzodesFile", EntityUtil.GetAssociationDescription("T_DUALISSZERZODESFILE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.MufajTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MufajTipus", EntityUtil.GetAssociationDescription("T_MUFAJTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanszakTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanszakTipus", EntityUtil.GetAssociationDescription("T_TANSZAKTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.NemzetisegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NemzetisegTipus", EntityUtil.GetAssociationDescription("T_NEMZETISEGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.FelekezetTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FelekezetTipus", EntityUtil.GetAssociationDescription("T_FELEKEZETTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TKJogalapTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TKJogalapTipus", EntityUtil.GetAssociationDescription("T_TKJOGALAPTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TartozkodasJogcimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TartozkodasJogcimTipus", EntityUtil.GetAssociationDescription("T_TARTOZKODASJOGCIMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TartJogOkmanyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TartJogOkmanyTipus", EntityUtil.GetAssociationDescription("T_TARTJOGOKMANYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.KepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "KepesitesTipus", EntityUtil.GetAssociationDescription("T_KEPESITESTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SzirStatTanulo.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzirStatTanulo", EntityUtil.GetAssociationDescription("T_SZIRSTATTANULO_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzirStatFeladatellatasiHely.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzirStatFeladatellatasiHely", EntityUtil.GetAssociationDescription("T_SZIRSTATFELADATELLATASIHELY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.FogyatekossagTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "FogyatekossagTipus", EntityUtil.GetAssociationDescription("T_FOGYATEKOSSAGTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.OgOrarend.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "OgOrarend", EntityUtil.GetAssociationDescription("T_OGORAREND_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzirStatKonyvtar.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzirStatKonyvtar", EntityUtil.GetAssociationDescription("T_SZIRSTATKONYVTAR_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EszkozIgenyles.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EszkozIgenyles", EntityUtil.GetAssociationDescription("T_ESZKOZIGENYLES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzakmaReszSzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakmaReszSzakmaTipus", EntityUtil.GetAssociationDescription("T_SZAKMARESZSZAKMATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.AgazatReszSzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AgazatReszSzakmaTipus", EntityUtil.GetAssociationDescription("T_AGAZATRESZSZAKMATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ReszSzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ReszSzakmaTipus", EntityUtil.GetAssociationDescription("T_RESZSZAKMATIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.MunkaSzerzodes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "MunkaSzerzodes", EntityUtil.GetAssociationDescription("T_MUNKASZERZODES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.EszkozIgenylesStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "EszkozIgenylesStatusz", EntityUtil.GetAssociationDescription("T_ESZKOZIGENYLESSTATUSZ_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.JogvMegszuneseJogcimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "JogvMegszuneseJogcimTipus", EntityUtil.GetAssociationDescription("T_JOGVMEGSZUNESEJOGCIMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TbJogviszonyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TbJogviszonyTipus", EntityUtil.GetAssociationDescription("T_TBJOGVISZONYTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TbJogviszony.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TbJogviszony", EntityUtil.GetAssociationDescription("T_TBJOGVISZONY_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.AgazatAlapOktMegnevTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AgazatAlapOktMegnevTipus", EntityUtil.GetAssociationDescription("T_AGAZATALAPOKTMEGNEVTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.JogvKeletkezeseJogcimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "JogvKeletkezeseJogcimTipus", EntityUtil.GetAssociationDescription("T_JOGVKELETKEZESEJOGCIMTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.AgazatAlapVizsgaEredTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "AgazatAlapVizsgaEredTipus", EntityUtil.GetAssociationDescription("T_AGAZATALAPVIZSGAEREDTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesTantargyi.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesTantargyi", EntityUtil.GetAssociationDescription("T_ERTEKELESTANTARGYI_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesMagSzorNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesMagSzorNyelv", EntityUtil.GetAssociationDescription("T_ERTEKELESMAGSZORNYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesMagSzor.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesMagSzor", EntityUtil.GetAssociationDescription("T_ERTEKELESMAGSZOR_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ErtekelesTantargyiNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ErtekelesTantargyiNyelv", EntityUtil.GetAssociationDescription("T_ERTEKELESTANTARGYINYELV_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.Szervezet.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "Szervezet", EntityUtil.GetAssociationDescription("T_SZERVEZET_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.UjSzktSzakmajegyzekOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "UjSzktSzakmajegyzekOsszerendeles", EntityUtil.GetAssociationDescription("T_UJSZKTSZAKMAJEGYZEKOSSZEREND_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.NktOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NktOsszerendeles", EntityUtil.GetAssociationDescription("T_NKTOSSZERENDELES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.RegiSzktOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "RegiSzktOsszerendeles", EntityUtil.GetAssociationDescription("T_REGISZKTOSSZERENDELES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.UjSzktReszszakmaOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "UjSzktReszszakmaOsszerendeles", EntityUtil.GetAssociationDescription("T_UJSZKTRESZSZAKMAOSSZERENDELE_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.DualisHelyszinTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "DualisHelyszinTipus", EntityUtil.GetAssociationDescription("T_DUALISHELYSZINTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.SzirStatNemAllamiOktKolts.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzirStatNemAllamiOktKolts", EntityUtil.GetAssociationDescription("T_SZIRSTATNEMALLAMIOKTKOLTS_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.ApaczaiKgrJogosult.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "ApaczaiKgrJogosult", EntityUtil.GetAssociationDescription("T_APACZAIKGRJOGOSULT_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.SzakmunkaSzerzodes.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "SzakmunkaSzerzodes", EntityUtil.GetAssociationDescription("T_SZAKMUNKASZERZODES_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
if (this.NyugdijTipus.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "NyugdijTipus", EntityUtil.GetAssociationDescription("T_NYUGDIJTIPUS_OSSZES", "C_ALTANEVID")); // nincs kapcsolotabla
}
if (this.TanulasiEgyseg.Count > 0)
{
throw new EntityDeleteFailedException("Tanev", "TanulasiEgyseg", EntityUtil.GetAssociationDescription("T_TANULASIEGYSEG_OSSZES", "C_TANEVID")); // nincs kapcsolotabla
}
// kaszkád törlések...
}
#region Mezők és tulajdonságok
#region Egyszerű mezők
#region Aktiv
protected internal bool? m_Aktiv;
///
/// aktív
///
[EntityProperty("Aktiv", EntityPropertyBaseType.ValueType, typeof(bool), EntityCopyMethod.ShallowCopy)]
public virtual bool? Aktiv
{
get
{
return m_Aktiv;
}
set
{
CheckModifyable();
if (m_Aktiv == value) return;
m_Aktiv = value;
FieldModified("Aktiv", value);
}
}
#endregion
#region ElsoTanitasiNap
protected internal DateTime? m_ElsoTanitasiNap;
///
/// tanév elso tanítási nap
///
[EntityProperty("ElsoTanitasiNap", EntityPropertyBaseType.ValueType, typeof(DateTime), EntityCopyMethod.ShallowCopy)]
public virtual DateTime? ElsoTanitasiNap
{
get
{
return m_ElsoTanitasiNap;
}
set
{
CheckModifyable();
if (m_ElsoTanitasiNap == value) return;
m_ElsoTanitasiNap = value;
FieldModified("ElsoTanitasiNap", value);
}
}
#endregion
#region KezdoNap
protected internal DateTime? m_KezdoNap;
///
/// tanév elso napja
///
[EntityProperty("KezdoNap", EntityPropertyBaseType.ValueType, typeof(DateTime), EntityCopyMethod.ShallowCopy)]
public virtual DateTime? KezdoNap
{
get
{
return m_KezdoNap;
}
set
{
CheckModifyable();
if (m_KezdoNap == value) return;
m_KezdoNap = value;
FieldModified("KezdoNap", value);
}
}
#endregion
#region Kovetkezo
protected internal bool? m_Kovetkezo;
///
/// Ha az érték True, akkortól kerülnek adatok a tanévbe, nebulóból ide kerülnek az új tanulók, ebbe a tanévbe léptetodnek a diákok, és ebbe a tanévbe dolgozhatnak elore az iskolák (órarend, TTF)
///
[EntityProperty("Kovetkezo", EntityPropertyBaseType.ValueType, typeof(bool), EntityCopyMethod.ShallowCopy)]
public virtual bool? Kovetkezo
{
get
{
return m_Kovetkezo;
}
set
{
CheckModifyable();
if (m_Kovetkezo == value) return;
m_Kovetkezo = value;
FieldModified("Kovetkezo", value);
}
}
#endregion
#region Nev
protected internal string m_Nev;
///
/// név
///
[EntityProperty("Nev", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string Nev
{
get
{
return m_Nev;
}
set
{
CheckModifyable();
if (m_Nev == value) return;
m_Nev = value;
FieldModified("Nev", value);
}
}
#endregion
#region Sorszam
protected internal int? m_Sorszam;
///
/// sorszám
///
[EntityProperty("Sorszam", EntityPropertyBaseType.ValueType, typeof(int), EntityCopyMethod.ShallowCopy)]
public virtual int? Sorszam
{
get
{
return m_Sorszam;
}
set
{
CheckModifyable();
if (m_Sorszam == value) return;
m_Sorszam = value;
FieldModified("Sorszam", value);
}
}
#endregion
#region UtolsoNap
protected internal DateTime? m_UtolsoNap;
///
/// tanév utolsó napja
///
[EntityProperty("UtolsoNap", EntityPropertyBaseType.ValueType, typeof(DateTime), EntityCopyMethod.ShallowCopy)]
public virtual DateTime? UtolsoNap
{
get
{
return m_UtolsoNap;
}
set
{
CheckModifyable();
if (m_UtolsoNap == value) return;
m_UtolsoNap = value;
FieldModified("UtolsoNap", value);
}
}
#endregion
#region UtolsoTanitasiNap
protected internal DateTime? m_UtolsoTanitasiNap;
///
/// utolsó tanítási nap
///
[EntityProperty("UtolsoTanitasiNap", EntityPropertyBaseType.ValueType, typeof(DateTime), EntityCopyMethod.ShallowCopy)]
public virtual DateTime? UtolsoTanitasiNap
{
get
{
return m_UtolsoTanitasiNap;
}
set
{
CheckModifyable();
if (m_UtolsoTanitasiNap == value) return;
m_UtolsoTanitasiNap = value;
FieldModified("UtolsoTanitasiNap", value);
}
}
#endregion
#region Aktivalva
protected internal DateTime? m_Aktivalva;
///
/// Nincs definiálva megjegyzés.
///
[EntityProperty("Aktivalva", EntityPropertyBaseType.ValueType, typeof(DateTime), EntityCopyMethod.ShallowCopy)]
public virtual DateTime? Aktivalva
{
get
{
return m_Aktivalva;
}
set
{
CheckModifyable();
if (m_Aktivalva == value) return;
m_Aktivalva = value;
FieldModified("Aktivalva", value);
}
}
#endregion
#region IsKivalaszthato
protected internal bool m_IsKivalaszthato;
///
/// Nincs definiálva megjegyzés.
///
[EntityProperty("IsKivalaszthato", EntityPropertyBaseType.ValueType, typeof(bool), EntityCopyMethod.ShallowCopy)]
public virtual bool IsKivalaszthato
{
get
{
return m_IsKivalaszthato;
}
set
{
CheckModifyable();
if (m_IsKivalaszthato == value) return;
m_IsKivalaszthato = value;
FieldModified("IsKivalaszthato", value);
}
}
#endregion
#region AktivalhatosagKezdete
protected internal DateTime? m_AktivalhatosagKezdete;
///
/// Ettől a dátumtól érhető el a Tanév váltás funkció, ha ez a tanév a következő
///
[EntityProperty("AktivalhatosagKezdete", EntityPropertyBaseType.ValueType, typeof(DateTime), EntityCopyMethod.ShallowCopy)]
public virtual DateTime? AktivalhatosagKezdete
{
get
{
return m_AktivalhatosagKezdete;
}
set
{
CheckModifyable();
if (m_AktivalhatosagKezdete == value) return;
m_AktivalhatosagKezdete = value;
FieldModified("AktivalhatosagKezdete", value);
}
}
#endregion
#endregion
#region Asszociációkkal kapcsolatos dolgok
protected internal virtual bool LoadByFelvettTanulokId(int id)
{
return m_DA.LoadByFelvettTanulokId(id, this);
}
protected internal virtual bool LoadByIntezmenyAdatokId(int id)
{
return m_DA.LoadByIntezmenyAdatokId(id, this);
}
protected internal virtual bool LoadByIntezmenyAdatszolgaltatasId(int id)
{
return m_DA.LoadByIntezmenyAdatszolgaltatasId(id, this);
}
protected internal virtual bool LoadByFelvettTanulokTanugyiAdatokId(int id)
{
return m_DA.LoadByFelvettTanulokTanugyiAdatokId(id, this);
}
protected internal virtual bool LoadByFelhasznaloId(int id)
{
return m_DA.LoadByFelhasznaloId(id, this);
}
protected internal virtual bool LoadByEmailId(int id)
{
return m_DA.LoadByEmailId(id, this);
}
protected internal virtual bool LoadByCimId(int id)
{
return m_DA.LoadByCimId(id, this);
}
protected internal virtual bool LoadBySzerepkorId(int id)
{
return m_DA.LoadBySzerepkorId(id, this);
}
protected internal virtual bool LoadByTelefonId(int id)
{
return m_DA.LoadByTelefonId(id, this);
}
protected internal virtual bool LoadByDictionaryItemBaseId(int id)
{
return m_DA.LoadByDictionaryItemBaseId(id, this);
}
protected internal virtual bool LoadByNemId(int id)
{
return m_DA.LoadByNemId(id, this);
}
protected internal virtual bool LoadByCimTipusId(int id)
{
return m_DA.LoadByCimTipusId(id, this);
}
protected internal virtual bool LoadByAllampolgarsagId(int id)
{
return m_DA.LoadByAllampolgarsagId(id, this);
}
protected internal virtual bool LoadByTelefonTipusId(int id)
{
return m_DA.LoadByTelefonTipusId(id, this);
}
protected internal virtual bool LoadByEmailTipusId(int id)
{
return m_DA.LoadByEmailTipusId(id, this);
}
protected internal virtual bool LoadByEsemenyStatuszId(int id)
{
return m_DA.LoadByEsemenyStatuszId(id, this);
}
protected internal virtual bool LoadByOrszagTipusId(int id)
{
return m_DA.LoadByOrszagTipusId(id, this);
}
protected internal virtual bool LoadByMunkaviszonyJellegeId(int id)
{
return m_DA.LoadByMunkaviszonyJellegeId(id, this);
}
protected internal virtual bool LoadByDiakigazolvanyIgenyStatuszId(int id)
{
return m_DA.LoadByDiakigazolvanyIgenyStatuszId(id, this);
}
protected internal virtual bool LoadByUserProfileId(int id)
{
return m_DA.LoadByUserProfileId(id, this);
}
protected internal virtual bool LoadByKozteruletJellegId(int id)
{
return m_DA.LoadByKozteruletJellegId(id, this);
}
protected internal virtual bool LoadByDiakigazolvanyIgenyTipusId(int id)
{
return m_DA.LoadByDiakigazolvanyIgenyTipusId(id, this);
}
protected internal virtual bool LoadByHonapokId(int id)
{
return m_DA.LoadByHonapokId(id, this);
}
protected internal virtual bool LoadByFelhasznaloBelepesTortenetId(int id)
{
return m_DA.LoadByFelhasznaloBelepesTortenetId(id, this);
}
protected internal virtual bool LoadByMegyeId(int id)
{
return m_DA.LoadByMegyeId(id, this);
}
protected internal virtual bool LoadByLogId(int id)
{
return m_DA.LoadByLogId(id, this);
}
protected internal virtual bool LoadByFelhasznaloBelepesId(int id)
{
return m_DA.LoadByFelhasznaloBelepesId(id, this);
}
protected internal virtual bool LoadByMagantanulosagOkaId(int id)
{
return m_DA.LoadByMagantanulosagOkaId(id, this);
}
protected internal virtual bool LoadByTeremTipusId(int id)
{
return m_DA.LoadByTeremTipusId(id, this);
}
protected internal virtual bool LoadByIngyenesTankonyvEllatasId(int id)
{
return m_DA.LoadByIngyenesTankonyvEllatasId(id, this);
}
protected internal virtual bool LoadByEszkozId(int id)
{
return m_DA.LoadByEszkozId(id, this);
}
protected internal virtual bool LoadByEszkozKategoriaId(int id)
{
return m_DA.LoadByEszkozKategoriaId(id, this);
}
protected internal virtual bool LoadByEszkozTipusId(int id)
{
return m_DA.LoadByEszkozTipusId(id, this);
}
protected internal virtual bool LoadByTeremId(int id)
{
return m_DA.LoadByTeremId(id, this);
}
protected internal virtual bool LoadByMunkaviszonyTipusId(int id)
{
return m_DA.LoadByMunkaviszonyTipusId(id, this);
}
protected internal virtual bool LoadByIgazolvanyTipusId(int id)
{
return m_DA.LoadByIgazolvanyTipusId(id, this);
}
protected internal virtual bool LoadByAnyanyelvId(int id)
{
return m_DA.LoadByAnyanyelvId(id, this);
}
protected internal virtual bool LoadByAlkalmazottId(int id)
{
return m_DA.LoadByAlkalmazottId(id, this);
}
protected internal virtual bool LoadByMukodesiHelyId(int id)
{
return m_DA.LoadByMukodesiHelyId(id, this);
}
protected internal virtual bool LoadByMunkakorTipusId(int id)
{
return m_DA.LoadByMunkakorTipusId(id, this);
}
protected internal virtual bool LoadByGondviseloId(int id)
{
return m_DA.LoadByGondviseloId(id, this);
}
protected internal virtual bool LoadByTanuloId(int id)
{
return m_DA.LoadByTanuloId(id, this);
}
protected internal virtual bool LoadByRokonsagiFokId(int id)
{
return m_DA.LoadByRokonsagiFokId(id, this);
}
protected internal virtual bool LoadByCsoportTipusId(int id)
{
return m_DA.LoadByCsoportTipusId(id, this);
}
protected internal virtual bool LoadByFenntartoTipusId(int id)
{
return m_DA.LoadByFenntartoTipusId(id, this);
}
protected internal virtual bool LoadByMertekegysegTipusId(int id)
{
return m_DA.LoadByMertekegysegTipusId(id, this);
}
protected internal virtual bool LoadByEszkozCelId(int id)
{
return m_DA.LoadByEszkozCelId(id, this);
}
protected internal virtual bool LoadByCsoportId(int id)
{
return m_DA.LoadByCsoportId(id, this);
}
protected internal virtual bool LoadByEszkozJellegId(int id)
{
return m_DA.LoadByEszkozJellegId(id, this);
}
protected internal virtual bool LoadByTestnevelesTipusId(int id)
{
return m_DA.LoadByTestnevelesTipusId(id, this);
}
protected internal virtual bool LoadByTanterviJellegId(int id)
{
return m_DA.LoadByTanterviJellegId(id, this);
}
protected internal virtual bool LoadByOsztalyId(int id)
{
return m_DA.LoadByOsztalyId(id, this);
}
protected internal virtual bool LoadByOsztalyCsoportId(int id)
{
return m_DA.LoadByOsztalyCsoportId(id, this);
}
protected internal virtual bool LoadByVallasId(int id)
{
return m_DA.LoadByVallasId(id, this);
}
protected internal virtual bool LoadByHatranyosHelyzetTipusId(int id)
{
return m_DA.LoadByHatranyosHelyzetTipusId(id, this);
}
protected internal virtual bool LoadByEtkezesiKedvezmenyTipusId(int id)
{
return m_DA.LoadByEtkezesiKedvezmenyTipusId(id, this);
}
protected internal virtual bool LoadByLatasserultTipusId(int id)
{
return m_DA.LoadByLatasserultTipusId(id, this);
}
protected internal virtual bool LoadByHallasserultTipusId(int id)
{
return m_DA.LoadByHallasserultTipusId(id, this);
}
protected internal virtual bool LoadByErtelmiFogyatekosTipusId(int id)
{
return m_DA.LoadByErtelmiFogyatekosTipusId(id, this);
}
protected internal virtual bool LoadByOktatasiNevelesiFeladatId(int id)
{
return m_DA.LoadByOktatasiNevelesiFeladatId(id, this);
}
protected internal virtual bool LoadByTantervId(int id)
{
return m_DA.LoadByTantervId(id, this);
}
protected internal virtual bool LoadByTantargyId(int id)
{
return m_DA.LoadByTantargyId(id, this);
}
protected internal virtual bool LoadByEvfolyamTipusId(int id)
{
return m_DA.LoadByEvfolyamTipusId(id, this);
}
protected internal virtual bool LoadByTargyKategoriaTipusId(int id)
{
return m_DA.LoadByTargyKategoriaTipusId(id, this);
}
protected internal virtual bool LoadByFoglalkozasId(int id)
{
return m_DA.LoadByFoglalkozasId(id, this);
}
protected internal virtual bool LoadByFoglalkozasTipusId(int id)
{
return m_DA.LoadByFoglalkozasTipusId(id, this);
}
protected internal virtual bool LoadByNapTipusId(int id)
{
return m_DA.LoadByNapTipusId(id, this);
}
protected internal virtual bool LoadByHetiRendTipusId(int id)
{
return m_DA.LoadByHetiRendTipusId(id, this);
}
protected internal virtual bool LoadByTanevRendjeId(int id)
{
return m_DA.LoadByTanevRendjeId(id, this);
}
protected internal virtual bool LoadByHetNapjaTipusId(int id)
{
return m_DA.LoadByHetNapjaTipusId(id, this);
}
protected internal virtual bool LoadByCsengetesiRendId(int id)
{
return m_DA.LoadByCsengetesiRendId(id, this);
}
protected internal virtual bool LoadByTanuloCsoportId(int id)
{
return m_DA.LoadByTanuloCsoportId(id, this);
}
protected internal virtual bool LoadByOrarendiOraId(int id)
{
return m_DA.LoadByOrarendiOraId(id, this);
}
protected internal virtual bool LoadByTanmenetId(int id)
{
return m_DA.LoadByTanmenetId(id, this);
}
protected internal virtual bool LoadByNaptariNapId(int id)
{
return m_DA.LoadByNaptariNapId(id, this);
}
protected internal virtual bool LoadByHelyettesitesTipusId(int id)
{
return m_DA.LoadByHelyettesitesTipusId(id, this);
}
protected internal virtual bool LoadByTanitasiOraId(int id)
{
return m_DA.LoadByTanitasiOraId(id, this);
}
protected internal virtual bool LoadByTanuloErtekelesId(int id)
{
return m_DA.LoadByTanuloErtekelesId(id, this);
}
protected internal virtual bool LoadByErtekelesTipusId(int id)
{
return m_DA.LoadByErtekelesTipusId(id, this);
}
protected internal virtual bool LoadByOsztalyzatTipusId(int id)
{
return m_DA.LoadByOsztalyzatTipusId(id, this);
}
protected internal virtual bool LoadByErtekelesModId(int id)
{
return m_DA.LoadByErtekelesModId(id, this);
}
protected internal virtual bool LoadByTanuloMulasztasId(int id)
{
return m_DA.LoadByTanuloMulasztasId(id, this);
}
protected internal virtual bool LoadByMulasztasTipusId(int id)
{
return m_DA.LoadByMulasztasTipusId(id, this);
}
protected internal virtual bool LoadByCsengetesiRendOraId(int id)
{
return m_DA.LoadByCsengetesiRendOraId(id, this);
}
protected internal virtual bool LoadByIgazolasTipusId(int id)
{
return m_DA.LoadByIgazolasTipusId(id, this);
}
protected internal virtual bool LoadByEsemenyTipusId(int id)
{
return m_DA.LoadByEsemenyTipusId(id, this);
}
protected internal virtual bool LoadByTanuloEsemenyId(int id)
{
return m_DA.LoadByTanuloEsemenyId(id, this);
}
protected internal virtual bool LoadBySzorgalomErtekelesTipusId(int id)
{
return m_DA.LoadBySzorgalomErtekelesTipusId(id, this);
}
protected internal virtual bool LoadByMagatartasErtekelesTipusId(int id)
{
return m_DA.LoadByMagatartasErtekelesTipusId(id, this);
}
protected internal virtual bool LoadByOralatogatasId(int id)
{
return m_DA.LoadByOralatogatasId(id, this);
}
protected internal virtual bool LoadByIgazolasId(int id)
{
return m_DA.LoadByIgazolasId(id, this);
}
protected internal virtual bool LoadByNaploEllenorzesId(int id)
{
return m_DA.LoadByNaploEllenorzesId(id, this);
}
protected internal virtual bool LoadByTanuloMentessegId(int id)
{
return m_DA.LoadByTanuloMentessegId(id, this);
}
protected internal virtual bool LoadByEletpalyamodellStatuszokId(int id)
{
return m_DA.LoadByEletpalyamodellStatuszokId(id, this);
}
protected internal virtual bool LoadByEletpalyamodellFokozatTipusId(int id)
{
return m_DA.LoadByEletpalyamodellFokozatTipusId(id, this);
}
protected internal virtual bool LoadByPedagogusEletpalyamodellId(int id)
{
return m_DA.LoadByPedagogusEletpalyamodellId(id, this);
}
protected internal virtual bool LoadByTevekenysegTipusId(int id)
{
return m_DA.LoadByTevekenysegTipusId(id, this);
}
protected internal virtual bool LoadByErtesitesSzinTipusId(int id)
{
return m_DA.LoadByErtesitesSzinTipusId(id, this);
}
protected internal virtual bool LoadByErtesitesTipusId(int id)
{
return m_DA.LoadByErtesitesTipusId(id, this);
}
protected internal virtual bool LoadByErtesitesId(int id)
{
return m_DA.LoadByErtesitesId(id, this);
}
protected internal virtual bool LoadByErtesitesGeneralasTortenetId(int id)
{
return m_DA.LoadByErtesitesGeneralasTortenetId(id, this);
}
protected internal virtual bool LoadByTanariAtlagSulyId(int id)
{
return m_DA.LoadByTanariAtlagSulyId(id, this);
}
protected internal virtual bool LoadByKizaroCsoportTipusId(int id)
{
return m_DA.LoadByKizaroCsoportTipusId(id, this);
}
protected internal virtual bool LoadByOraTervId(int id)
{
return m_DA.LoadByOraTervId(id, this);
}
protected internal virtual bool LoadByRendszerBeallitasId(int id)
{
return m_DA.LoadByRendszerBeallitasId(id, this);
}
protected internal virtual bool LoadByOraTervTargyId(int id)
{
return m_DA.LoadByOraTervTargyId(id, this);
}
protected internal virtual bool LoadByRendszerBeallitasTipusId(int id)
{
return m_DA.LoadByRendszerBeallitasTipusId(id, this);
}
protected internal virtual bool LoadByFeladatEllatasiHelyId(int id)
{
return m_DA.LoadByFeladatEllatasiHelyId(id, this);
}
protected internal virtual bool LoadByOldalLatogatottsagId(int id)
{
return m_DA.LoadByOldalLatogatottsagId(id, this);
}
protected internal virtual bool LoadByMulasztasStatisztikaTipusId(int id)
{
return m_DA.LoadByMulasztasStatisztikaTipusId(id, this);
}
protected internal virtual bool LoadBySystemSettingsControlTypeId(int id)
{
return m_DA.LoadBySystemSettingsControlTypeId(id, this);
}
protected internal virtual bool LoadByMunkaugyiAdatokId(int id)
{
return m_DA.LoadByMunkaugyiAdatokId(id, this);
}
protected internal virtual bool LoadByRendszerErtesitesekId(int id)
{
return m_DA.LoadByRendszerErtesitesekId(id, this);
}
protected internal virtual bool LoadByTanuloKozossegiSzolgalatId(int id)
{
return m_DA.LoadByTanuloKozossegiSzolgalatId(id, this);
}
protected internal virtual bool LoadBySzerepkorTipusId(int id)
{
return m_DA.LoadBySzerepkorTipusId(id, this);
}
protected internal virtual bool LoadByJogosultsagId(int id)
{
return m_DA.LoadByJogosultsagId(id, this);
}
protected internal virtual bool LoadByIktatottDokumentumokId(int id)
{
return m_DA.LoadByIktatottDokumentumokId(id, this);
}
protected internal virtual bool LoadByHelyettesitesiIdoszakId(int id)
{
return m_DA.LoadByHelyettesitesiIdoszakId(id, this);
}
protected internal virtual bool LoadByNaptariHetId(int id)
{
return m_DA.LoadByNaptariHetId(id, this);
}
protected internal virtual bool LoadByKretaTipusId(int id)
{
return m_DA.LoadByKretaTipusId(id, this);
}
protected internal virtual bool LoadByPedagogusStatuszId(int id)
{
return m_DA.LoadByPedagogusStatuszId(id, this);
}
protected internal virtual bool LoadByBesorolasiFokozatTipusId(int id)
{
return m_DA.LoadByBesorolasiFokozatTipusId(id, this);
}
protected internal virtual bool LoadByMunkaidoKedvezmenyOkaId(int id)
{
return m_DA.LoadByMunkaidoKedvezmenyOkaId(id, this);
}
protected internal virtual bool LoadByKirTelephelyId(int id)
{
return m_DA.LoadByKirTelephelyId(id, this);
}
protected internal virtual bool LoadByCsoportTipus_FoglalkozasTipusId(int id)
{
return m_DA.LoadByCsoportTipus_FoglalkozasTipusId(id, this);
}
protected internal virtual bool LoadBySorolasOkaTipusId(int id)
{
return m_DA.LoadBySorolasOkaTipusId(id, this);
}
protected internal virtual bool LoadByFoglalkozasArchivId(int id)
{
return m_DA.LoadByFoglalkozasArchivId(id, this);
}
protected internal virtual bool LoadByESLAdatTipusId(int id)
{
return m_DA.LoadByESLAdatTipusId(id, this);
}
protected internal virtual bool LoadByTanuloESLAdatokId(int id)
{
return m_DA.LoadByTanuloESLAdatokId(id, this);
}
protected internal virtual bool LoadByESLAdatId(int id)
{
return m_DA.LoadByESLAdatId(id, this);
}
protected internal virtual bool LoadByNemKotottMunkaidoId(int id)
{
return m_DA.LoadByNemKotottMunkaidoId(id, this);
}
protected internal virtual bool LoadByENaploInfraId(int id)
{
return m_DA.LoadByENaploInfraId(id, this);
}
protected internal virtual bool LoadByAdatszolgaltatasENaploId(int id)
{
return m_DA.LoadByAdatszolgaltatasENaploId(id, this);
}
protected internal virtual bool LoadByENaploForrasId(int id)
{
return m_DA.LoadByENaploForrasId(id, this);
}
protected internal virtual bool LoadByENaploTipusId(int id)
{
return m_DA.LoadByENaploTipusId(id, this);
}
protected internal virtual bool LoadBySzerzodoSzemelyPozicioId(int id)
{
return m_DA.LoadBySzerzodoSzemelyPozicioId(id, this);
}
protected internal virtual bool LoadByForrasId(int id)
{
return m_DA.LoadByForrasId(id, this);
}
protected internal virtual bool LoadByPrioritasId(int id)
{
return m_DA.LoadByPrioritasId(id, this);
}
protected internal virtual bool LoadByHibajegyStatuszId(int id)
{
return m_DA.LoadByHibajegyStatuszId(id, this);
}
protected internal virtual bool LoadByOsszegTullepesTipusId(int id)
{
return m_DA.LoadByOsszegTullepesTipusId(id, this);
}
protected internal virtual bool LoadByIdokeretId(int id)
{
return m_DA.LoadByIdokeretId(id, this);
}
protected internal virtual bool LoadByFelvetelStatuszaTipusId(int id)
{
return m_DA.LoadByFelvetelStatuszaTipusId(id, this);
}
protected internal virtual bool LoadByNebuloId(int id)
{
return m_DA.LoadByNebuloId(id, this);
}
protected internal virtual bool LoadByTagozatTipusId(int id)
{
return m_DA.LoadByTagozatTipusId(id, this);
}
protected internal virtual bool LoadByENaploHasznalatId(int id)
{
return m_DA.LoadByENaploHasznalatId(id, this);
}
protected internal virtual bool LoadByIKTKompetenciaSzintId(int id)
{
return m_DA.LoadByIKTKompetenciaSzintId(id, this);
}
protected internal virtual bool LoadByWiFiEleresId(int id)
{
return m_DA.LoadByWiFiEleresId(id, this);
}
protected internal virtual bool LoadByPedagogusIKTAdatszolgaltatasId(int id)
{
return m_DA.LoadByPedagogusIKTAdatszolgaltatasId(id, this);
}
protected internal virtual bool LoadByElsodlegesIKTEszkozId(int id)
{
return m_DA.LoadByElsodlegesIKTEszkozId(id, this);
}
protected internal virtual bool LoadByIKTEszkozhasznalatModId(int id)
{
return m_DA.LoadByIKTEszkozhasznalatModId(id, this);
}
protected internal virtual bool LoadByMukodesiHelyTipusId(int id)
{
return m_DA.LoadByMukodesiHelyTipusId(id, this);
}
protected internal virtual bool LoadBySzakkepesitesTipusId(int id)
{
return m_DA.LoadBySzakkepesitesTipusId(id, this);
}
protected internal virtual bool LoadBySzakmacsoportTipusId(int id)
{
return m_DA.LoadBySzakmacsoportTipusId(id, this);
}
protected internal virtual bool LoadByAgazatTipusId(int id)
{
return m_DA.LoadByAgazatTipusId(id, this);
}
protected internal virtual bool LoadByReszszakkepesitesTipusId(int id)
{
return m_DA.LoadByReszszakkepesitesTipusId(id, this);
}
protected internal virtual bool LoadByTovabbiMunkaugyiAdatokId(int id)
{
return m_DA.LoadByTovabbiMunkaugyiAdatokId(id, this);
}
protected internal virtual bool LoadByErettsegiTantargyId(int id)
{
return m_DA.LoadByErettsegiTantargyId(id, this);
}
protected internal virtual bool LoadByErettsegiTantargyAdatokId(int id)
{
return m_DA.LoadByErettsegiTantargyAdatokId(id, this);
}
protected internal virtual bool LoadByErettsegiEredmenyId(int id)
{
return m_DA.LoadByErettsegiEredmenyId(id, this);
}
protected internal virtual bool LoadByErettsegiTipusId(int id)
{
return m_DA.LoadByErettsegiTipusId(id, this);
}
protected internal virtual bool LoadByErettsegiSzintId(int id)
{
return m_DA.LoadByErettsegiSzintId(id, this);
}
protected internal virtual bool LoadByFoglalkoztatasTipusaId(int id)
{
return m_DA.LoadByFoglalkoztatasTipusaId(id, this);
}
protected internal virtual bool LoadByVezetoiOraszamokTipusId(int id)
{
return m_DA.LoadByVezetoiOraszamokTipusId(id, this);
}
protected internal virtual bool LoadByIntezmenyEszkozAdatszolgaltatasId(int id)
{
return m_DA.LoadByIntezmenyEszkozAdatszolgaltatasId(id, this);
}
protected internal virtual bool LoadByMukodesiHelyAdatszolgaltatasId(int id)
{
return m_DA.LoadByMukodesiHelyAdatszolgaltatasId(id, this);
}
protected internal virtual bool LoadByKozossegiSzolgalatTipusId(int id)
{
return m_DA.LoadByKozossegiSzolgalatTipusId(id, this);
}
protected internal virtual bool LoadByErtekelesMondatbankId(int id)
{
return m_DA.LoadByErtekelesMondatbankId(id, this);
}
protected internal virtual bool LoadByNATKerdoivId(int id)
{
return m_DA.LoadByNATKerdoivId(id, this);
}
protected internal virtual bool LoadByTanitasiOraTulajdonsagId(int id)
{
return m_DA.LoadByTanitasiOraTulajdonsagId(id, this);
}
protected internal virtual bool LoadByOraTulajdonsagTipusId(int id)
{
return m_DA.LoadByOraTulajdonsagTipusId(id, this);
}
protected internal virtual bool LoadByOrarendiOraTulajdonsagId(int id)
{
return m_DA.LoadByOrarendiOraTulajdonsagId(id, this);
}
protected internal virtual bool LoadByTanuloMulasztasLattamozasId(int id)
{
return m_DA.LoadByTanuloMulasztasLattamozasId(id, this);
}
protected internal virtual bool LoadByTanuloEsemenyLattamozasId(int id)
{
return m_DA.LoadByTanuloEsemenyLattamozasId(id, this);
}
protected internal virtual bool LoadByTanuloErtekelesLattamozasId(int id)
{
return m_DA.LoadByTanuloErtekelesLattamozasId(id, this);
}
protected internal virtual bool LoadByDictionaryTypeId(int id)
{
return m_DA.LoadByDictionaryTypeId(id, this);
}
protected internal virtual bool LoadByeLearningId(int id)
{
return m_DA.LoadByeLearningId(id, this);
}
protected internal virtual bool LoadByVegzettsegTipusId(int id)
{
return m_DA.LoadByVegzettsegTipusId(id, this);
}
protected internal virtual bool LoadByHaziFeladatokId(int id)
{
return m_DA.LoadByHaziFeladatokId(id, this);
}
protected internal virtual bool LoadByHittanTipusId(int id)
{
return m_DA.LoadByHittanTipusId(id, this);
}
protected internal virtual bool LoadByHittanAdatszolgaltatasId(int id)
{
return m_DA.LoadByHittanAdatszolgaltatasId(id, this);
}
protected internal virtual bool LoadByJelszoVisszaallitasId(int id)
{
return m_DA.LoadByJelszoVisszaallitasId(id, this);
}
protected internal virtual bool LoadByKozmuSzamlaTipusId(int id)
{
return m_DA.LoadByKozmuSzamlaTipusId(id, this);
}
protected internal virtual bool LoadByMerohelyId(int id)
{
return m_DA.LoadByMerohelyId(id, this);
}
protected internal virtual bool LoadByKozmuSzamlaId(int id)
{
return m_DA.LoadByKozmuSzamlaId(id, this);
}
protected internal virtual bool LoadByMerohelyTipusId(int id)
{
return m_DA.LoadByMerohelyTipusId(id, this);
}
protected internal virtual bool LoadByMeroallasId(int id)
{
return m_DA.LoadByMeroallasId(id, this);
}
protected internal virtual bool LoadByPenznemTipusId(int id)
{
return m_DA.LoadByPenznemTipusId(id, this);
}
protected internal virtual bool LoadByLicenceId(int id)
{
return m_DA.LoadByLicenceId(id, this);
}
protected internal virtual bool LoadByLicenceFunkciokTipusId(int id)
{
return m_DA.LoadByLicenceFunkciokTipusId(id, this);
}
protected internal virtual bool LoadByErettsegiKerdesId(int id)
{
return m_DA.LoadByErettsegiKerdesId(id, this);
}
protected internal virtual bool LoadByErettsegiValaszId(int id)
{
return m_DA.LoadByErettsegiValaszId(id, this);
}
protected internal virtual bool LoadByTanuloHaziFeladatId(int id)
{
return m_DA.LoadByTanuloHaziFeladatId(id, this);
}
protected internal virtual bool LoadByVegzettsegId(int id)
{
return m_DA.LoadByVegzettsegId(id, this);
}
protected internal virtual bool LoadByKepesitesId(int id)
{
return m_DA.LoadByKepesitesId(id, this);
}
protected internal virtual bool LoadByGimnaziumiEvfolyamTipusId(int id)
{
return m_DA.LoadByGimnaziumiEvfolyamTipusId(id, this);
}
protected internal virtual bool LoadBySzakTipusId(int id)
{
return m_DA.LoadBySzakTipusId(id, this);
}
protected internal virtual bool LoadByKirSzolgaltatasTipusId(int id)
{
return m_DA.LoadByKirSzolgaltatasTipusId(id, this);
}
protected internal virtual bool LoadByKIRKontenerElemId(int id)
{
return m_DA.LoadByKIRKontenerElemId(id, this);
}
protected internal virtual bool LoadByKIRKontenerStatuszId(int id)
{
return m_DA.LoadByKIRKontenerStatuszId(id, this);
}
protected internal virtual bool LoadByKIRKontenerId(int id)
{
return m_DA.LoadByKIRKontenerId(id, this);
}
protected internal virtual bool LoadByKIRKontenerElemStatuszId(int id)
{
return m_DA.LoadByKIRKontenerElemStatuszId(id, this);
}
protected internal virtual bool LoadByOsszefuggoSzakGyakId(int id)
{
return m_DA.LoadByOsszefuggoSzakGyakId(id, this);
}
protected internal virtual bool LoadByKKAMIZenemuvKatTipusId(int id)
{
return m_DA.LoadByKKAMIZenemuvKatTipusId(id, this);
}
protected internal virtual bool LoadByKKSzakTipusId(int id)
{
return m_DA.LoadByKKSzakTipusId(id, this);
}
protected internal virtual bool LoadByKKKepesitesTipusId(int id)
{
return m_DA.LoadByKKKepesitesTipusId(id, this);
}
protected internal virtual bool LoadByKKGyogypedTerTipusId(int id)
{
return m_DA.LoadByKKGyogypedTerTipusId(id, this);
}
protected internal virtual bool LoadByKKAMIKlasszikusTipusId(int id)
{
return m_DA.LoadByKKAMIKlasszikusTipusId(id, this);
}
protected internal virtual bool LoadByKKTanitoMuvTerTipusId(int id)
{
return m_DA.LoadByKKTanitoMuvTerTipusId(id, this);
}
protected internal virtual bool LoadByKKAMIJazzZeneTipusId(int id)
{
return m_DA.LoadByKKAMIJazzZeneTipusId(id, this);
}
protected internal virtual bool LoadByKKAMITeruletTipusId(int id)
{
return m_DA.LoadByKKAMITeruletTipusId(id, this);
}
protected internal virtual bool LoadByKKAMIVegzettsegTipusId(int id)
{
return m_DA.LoadByKKAMIVegzettsegTipusId(id, this);
}
protected internal virtual bool LoadByKKAMIElektroakuTipusId(int id)
{
return m_DA.LoadByKKAMIElektroakuTipusId(id, this);
}
protected internal virtual bool LoadByKKAMINepzeneTipusId(int id)
{
return m_DA.LoadByKKAMINepzeneTipusId(id, this);
}
protected internal virtual bool LoadByKKVegzettsegTipusId(int id)
{
return m_DA.LoadByKKVegzettsegTipusId(id, this);
}
protected internal virtual bool LoadByKKTanitoVezgettsegId(int id)
{
return m_DA.LoadByKKTanitoVezgettsegId(id, this);
}
protected internal virtual bool LoadByKKTanarVegzettsegId(int id)
{
return m_DA.LoadByKKTanarVegzettsegId(id, this);
}
protected internal virtual bool LoadByKKTeruletId(int id)
{
return m_DA.LoadByKKTeruletId(id, this);
}
protected internal virtual bool LoadByKKElektroakuZeneId(int id)
{
return m_DA.LoadByKKElektroakuZeneId(id, this);
}
protected internal virtual bool LoadByKKNepzeneId(int id)
{
return m_DA.LoadByKKNepzeneId(id, this);
}
protected internal virtual bool LoadByKKGyogypedVegzettsegId(int id)
{
return m_DA.LoadByKKGyogypedVegzettsegId(id, this);
}
protected internal virtual bool LoadByKKAMIVegzettsegId(int id)
{
return m_DA.LoadByKKAMIVegzettsegId(id, this);
}
protected internal virtual bool LoadByKKKlasszikusZeneId(int id)
{
return m_DA.LoadByKKKlasszikusZeneId(id, this);
}
protected internal virtual bool LoadByKKJazzZeneId(int id)
{
return m_DA.LoadByKKJazzZeneId(id, this);
}
protected internal virtual bool LoadByKKKepesitesJellTipusId(int id)
{
return m_DA.LoadByKKKepesitesJellTipusId(id, this);
}
protected internal virtual bool LoadByKKTantargyKategoriaId(int id)
{
return m_DA.LoadByKKTantargyKategoriaId(id, this);
}
protected internal virtual bool LoadByErtMondatbankTipusId(int id)
{
return m_DA.LoadByErtMondatbankTipusId(id, this);
}
protected internal virtual bool LoadByDiakolimpiaId(int id)
{
return m_DA.LoadByDiakolimpiaId(id, this);
}
protected internal virtual bool LoadByJelszoModositasLinkId(int id)
{
return m_DA.LoadByJelszoModositasLinkId(id, this);
}
protected internal virtual bool LoadByDokumentumKategoriaId(int id)
{
return m_DA.LoadByDokumentumKategoriaId(id, this);
}
protected internal virtual bool LoadByDokumentumKulcsszoTipusId(int id)
{
return m_DA.LoadByDokumentumKulcsszoTipusId(id, this);
}
protected internal virtual bool LoadByDokumentumStatuszId(int id)
{
return m_DA.LoadByDokumentumStatuszId(id, this);
}
protected internal virtual bool LoadByDokumentumTipusId(int id)
{
return m_DA.LoadByDokumentumTipusId(id, this);
}
protected internal virtual bool LoadByDokumentumKulcsszoId(int id)
{
return m_DA.LoadByDokumentumKulcsszoId(id, this);
}
protected internal virtual bool LoadByIktatottDokumentumId(int id)
{
return m_DA.LoadByIktatottDokumentumId(id, this);
}
protected internal virtual bool LoadByDokumentumKulcsszoErtekId(int id)
{
return m_DA.LoadByDokumentumKulcsszoErtekId(id, this);
}
protected internal virtual bool LoadByDokumentumId(int id)
{
return m_DA.LoadByDokumentumId(id, this);
}
protected internal virtual bool LoadByOktNevelesiKategoriaId(int id)
{
return m_DA.LoadByOktNevelesiKategoriaId(id, this);
}
protected internal virtual bool LoadByElearningElerhetosegId(int id)
{
return m_DA.LoadByElearningElerhetosegId(id, this);
}
protected internal virtual bool LoadByFogadooraId(int id)
{
return m_DA.LoadByFogadooraId(id, this);
}
protected internal virtual bool LoadByFogadooraIdopontId(int id)
{
return m_DA.LoadByFogadooraIdopontId(id, this);
}
protected internal virtual bool LoadByFogadoora_OsztalyCsoportId(int id)
{
return m_DA.LoadByFogadoora_OsztalyCsoportId(id, this);
}
protected internal virtual bool LoadByFogadooraIdopont_GondviseloId(int id)
{
return m_DA.LoadByFogadooraIdopont_GondviseloId(id, this);
}
protected internal virtual bool LoadByDokumentumElemiSzintId(int id)
{
return m_DA.LoadByDokumentumElemiSzintId(id, this);
}
protected internal virtual bool LoadByKurzusId(int id)
{
return m_DA.LoadByKurzusId(id, this);
}
protected internal virtual bool LoadByElvegzettKurzusId(int id)
{
return m_DA.LoadByElvegzettKurzusId(id, this);
}
protected internal virtual bool LoadByTanuloTanugyiAdatokId(int id)
{
return m_DA.LoadByTanuloTanugyiAdatokId(id, this);
}
protected internal virtual bool LoadByTeremElerhetosegId(int id)
{
return m_DA.LoadByTeremElerhetosegId(id, this);
}
protected internal virtual bool LoadByTavolletStatuszId(int id)
{
return m_DA.LoadByTavolletStatuszId(id, this);
}
protected internal virtual bool LoadByTavolletTipusId(int id)
{
return m_DA.LoadByTavolletTipusId(id, this);
}
protected internal virtual bool LoadByESLTantargykategoriaId(int id)
{
return m_DA.LoadByESLTantargykategoriaId(id, this);
}
protected internal virtual bool LoadByTavolletJelentoId(int id)
{
return m_DA.LoadByTavolletJelentoId(id, this);
}
protected internal virtual bool LoadByFeltoltottFajlId(int id)
{
return m_DA.LoadByFeltoltottFajlId(id, this);
}
protected internal virtual bool LoadByZenemuveszetiAgTipusId(int id)
{
return m_DA.LoadByZenemuveszetiAgTipusId(id, this);
}
protected internal virtual bool LoadByMuveszetiAgId(int id)
{
return m_DA.LoadByMuveszetiAgId(id, this);
}
protected internal virtual bool LoadBySAPTavolletId(int id)
{
return m_DA.LoadBySAPTavolletId(id, this);
}
protected internal virtual bool LoadBySzamonkeresElorejelzesId(int id)
{
return m_DA.LoadBySzamonkeresElorejelzesId(id, this);
}
protected internal virtual bool LoadByEugyintezesLogId(int id)
{
return m_DA.LoadByEugyintezesLogId(id, this);
}
protected internal virtual bool LoadByAMITagozatId(int id)
{
return m_DA.LoadByAMITagozatId(id, this);
}
protected internal virtual bool LoadByAMITantargyKotelezosegId(int id)
{
return m_DA.LoadByAMITantargyKotelezosegId(id, this);
}
protected internal virtual bool LoadByAMIFotargyId(int id)
{
return m_DA.LoadByAMIFotargyId(id, this);
}
protected internal virtual bool LoadByFoglalkozasAmiTanuloId(int id)
{
return m_DA.LoadByFoglalkozasAmiTanuloId(id, this);
}
protected internal virtual bool LoadByElearningFelhasznaloId(int id)
{
return m_DA.LoadByElearningFelhasznaloId(id, this);
}
protected internal virtual bool LoadByTerem_FeltoltottFajlId(int id)
{
return m_DA.LoadByTerem_FeltoltottFajlId(id, this);
}
protected internal virtual bool LoadByDashboardUzenetFelhasznaloId(int id)
{
return m_DA.LoadByDashboardUzenetFelhasznaloId(id, this);
}
protected internal virtual bool LoadByMennyisegiEgysegId(int id)
{
return m_DA.LoadByMennyisegiEgysegId(id, this);
}
protected internal virtual bool LoadByBeszerzesiIgenySatuszId(int id)
{
return m_DA.LoadByBeszerzesiIgenySatuszId(id, this);
}
protected internal virtual bool LoadByBeszerzesiSzallitoId(int id)
{
return m_DA.LoadByBeszerzesiSzallitoId(id, this);
}
protected internal virtual bool LoadByBeszerzesiAnyagtorzsId(int id)
{
return m_DA.LoadByBeszerzesiAnyagtorzsId(id, this);
}
protected internal virtual bool LoadByBeszerzesiIgenyDokumentumId(int id)
{
return m_DA.LoadByBeszerzesiIgenyDokumentumId(id, this);
}
protected internal virtual bool LoadByBeszerzesiAnyagId(int id)
{
return m_DA.LoadByBeszerzesiAnyagId(id, this);
}
protected internal virtual bool LoadByBeszerzesiSzallitotorzsId(int id)
{
return m_DA.LoadByBeszerzesiSzallitotorzsId(id, this);
}
protected internal virtual bool LoadByBeszerzesiIgenyId(int id)
{
return m_DA.LoadByBeszerzesiIgenyId(id, this);
}
protected internal virtual bool LoadByBeszerzesiIgenyMegjegyzesId(int id)
{
return m_DA.LoadByBeszerzesiIgenyMegjegyzesId(id, this);
}
protected internal virtual bool LoadByHetesId(int id)
{
return m_DA.LoadByHetesId(id, this);
}
protected internal virtual bool LoadBySniTanuloNevelesiFormaTipusId(int id)
{
return m_DA.LoadBySniTanuloNevelesiFormaTipusId(id, this);
}
protected internal virtual bool LoadByLepEloadasJegyzekId(int id)
{
return m_DA.LoadByLepEloadasJegyzekId(id, this);
}
protected internal virtual bool LoadByAdattisztitasStatisztikaId(int id)
{
return m_DA.LoadByAdattisztitasStatisztikaId(id, this);
}
protected internal virtual bool LoadByAranyJanosProgramTipusId(int id)
{
return m_DA.LoadByAranyJanosProgramTipusId(id, this);
}
protected internal virtual bool LoadByLepEloadasId(int id)
{
return m_DA.LoadByLepEloadasId(id, this);
}
protected internal virtual bool LoadByTantargyNyelvId(int id)
{
return m_DA.LoadByTantargyNyelvId(id, this);
}
protected internal virtual bool LoadByOraSorszamozasHalmazOsszerendelesId(int id)
{
return m_DA.LoadByOraSorszamozasHalmazOsszerendelesId(id, this);
}
protected internal virtual bool LoadByOraSorszamozasHalmazId(int id)
{
return m_DA.LoadByOraSorszamozasHalmazId(id, this);
}
protected internal virtual bool LoadByTanuloEsemenyNyelvId(int id)
{
return m_DA.LoadByTanuloEsemenyNyelvId(id, this);
}
protected internal virtual bool LoadByDictionaryItemBaseNyelvId(int id)
{
return m_DA.LoadByDictionaryItemBaseNyelvId(id, this);
}
protected internal virtual bool LoadByErtekelesMondatbankNyelvId(int id)
{
return m_DA.LoadByErtekelesMondatbankNyelvId(id, this);
}
protected internal virtual bool LoadByTanuloErtekelesNyelvId(int id)
{
return m_DA.LoadByTanuloErtekelesNyelvId(id, this);
}
protected internal virtual bool LoadByTanuloKozossegiSzolgalatNyelvId(int id)
{
return m_DA.LoadByTanuloKozossegiSzolgalatNyelvId(id, this);
}
protected internal virtual bool LoadByIktatottDokumentumTavolletId(int id)
{
return m_DA.LoadByIktatottDokumentumTavolletId(id, this);
}
protected internal virtual bool LoadByTanuloHaziFeladatStatuszId(int id)
{
return m_DA.LoadByTanuloHaziFeladatStatuszId(id, this);
}
protected internal virtual bool LoadByCsatolmanyId(int id)
{
return m_DA.LoadByCsatolmanyId(id, this);
}
protected internal virtual bool LoadByTanterviJellemzoTipusId(int id)
{
return m_DA.LoadByTanterviJellemzoTipusId(id, this);
}
protected internal virtual bool LoadByHaziFeladatCsatolmanyId(int id)
{
return m_DA.LoadByHaziFeladatCsatolmanyId(id, this);
}
protected internal virtual bool LoadByAmiJellemzoTipusId(int id)
{
return m_DA.LoadByAmiJellemzoTipusId(id, this);
}
protected internal virtual bool LoadByBankszamlaTulajdonosTipusId(int id)
{
return m_DA.LoadByBankszamlaTulajdonosTipusId(id, this);
}
protected internal virtual bool LoadByJogviszonyTipusId(int id)
{
return m_DA.LoadByJogviszonyTipusId(id, this);
}
protected internal virtual bool LoadByJuttatasTipusId(int id)
{
return m_DA.LoadByJuttatasTipusId(id, this);
}
protected internal virtual bool LoadByJuttatasId(int id)
{
return m_DA.LoadByJuttatasId(id, this);
}
protected internal virtual bool LoadByTanuloTantargyAtlagId(int id)
{
return m_DA.LoadByTanuloTantargyAtlagId(id, this);
}
protected internal virtual bool LoadBySzakmairanyTipusId(int id)
{
return m_DA.LoadBySzakmairanyTipusId(id, this);
}
protected internal virtual bool LoadByTanuloSniId(int id)
{
return m_DA.LoadByTanuloSniId(id, this);
}
protected internal virtual bool LoadBySzakmaTipusId(int id)
{
return m_DA.LoadBySzakmaTipusId(id, this);
}
protected internal virtual bool LoadByAgazatUjSzktTipusId(int id)
{
return m_DA.LoadByAgazatUjSzktTipusId(id, this);
}
protected internal virtual bool LoadByTovabbkepzesId(int id)
{
return m_DA.LoadByTovabbkepzesId(id, this);
}
protected internal virtual bool LoadByEgyebTevekenysegekTipusId(int id)
{
return m_DA.LoadByEgyebTevekenysegekTipusId(id, this);
}
protected internal virtual bool LoadByMunkaugyTorvenyiHatalyTipusId(int id)
{
return m_DA.LoadByMunkaugyTorvenyiHatalyTipusId(id, this);
}
protected internal virtual bool LoadByDKT_FeladatId(int id)
{
return m_DA.LoadByDKT_FeladatId(id, this);
}
protected internal virtual bool LoadByDKT_FeladatFileId(int id)
{
return m_DA.LoadByDKT_FeladatFileId(id, this);
}
protected internal virtual bool LoadByDKT_FileId(int id)
{
return m_DA.LoadByDKT_FileId(id, this);
}
protected internal virtual bool LoadByAlkalmazottMunkaKorTipusId(int id)
{
return m_DA.LoadByAlkalmazottMunkaKorTipusId(id, this);
}
protected internal virtual bool LoadByEgyHaztartasbanElokId(int id)
{
return m_DA.LoadByEgyHaztartasbanElokId(id, this);
}
protected internal virtual bool LoadBySzirStatFileId(int id)
{
return m_DA.LoadBySzirStatFileId(id, this);
}
protected internal virtual bool LoadByJogviszonySzuneteltetesId(int id)
{
return m_DA.LoadByJogviszonySzuneteltetesId(id, this);
}
protected internal virtual bool LoadByFileId(int id)
{
return m_DA.LoadByFileId(id, this);
}
protected internal virtual bool LoadByKirSzirFeladatellatasiHelyId(int id)
{
return m_DA.LoadByKirSzirFeladatellatasiHelyId(id, this);
}
protected internal virtual bool LoadBySzirStatTipusId(int id)
{
return m_DA.LoadBySzirStatTipusId(id, this);
}
protected internal virtual bool LoadByOraFileId(int id)
{
return m_DA.LoadByOraFileId(id, this);
}
protected internal virtual bool LoadByZaradekNyelvId(int id)
{
return m_DA.LoadByZaradekNyelvId(id, this);
}
protected internal virtual bool LoadByOraFileTipusId(int id)
{
return m_DA.LoadByOraFileTipusId(id, this);
}
protected internal virtual bool LoadByZaradekId(int id)
{
return m_DA.LoadByZaradekId(id, this);
}
protected internal virtual bool LoadByProfilkepFileId(int id)
{
return m_DA.LoadByProfilkepFileId(id, this);
}
protected internal virtual bool LoadBySzakiranyNktTipusId(int id)
{
return m_DA.LoadBySzakiranyNktTipusId(id, this);
}
protected internal virtual bool LoadByTulajdonTipusId(int id)
{
return m_DA.LoadByTulajdonTipusId(id, this);
}
protected internal virtual bool LoadByTanulmanyiTeruletNktTipusId(int id)
{
return m_DA.LoadByTanulmanyiTeruletNktTipusId(id, this);
}
protected internal virtual bool LoadBySzakkepesitesNktTipusId(int id)
{
return m_DA.LoadBySzakkepesitesNktTipusId(id, this);
}
protected internal virtual bool LoadByDigEszkozTipusId(int id)
{
return m_DA.LoadByDigEszkozTipusId(id, this);
}
protected internal virtual bool LoadByDigPlatformTipusId(int id)
{
return m_DA.LoadByDigPlatformTipusId(id, this);
}
protected internal virtual bool LoadByDigTamEszkozTipusId(int id)
{
return m_DA.LoadByDigTamEszkozTipusId(id, this);
}
protected internal virtual bool LoadByTanitasiOraDigTamEszkozId(int id)
{
return m_DA.LoadByTanitasiOraDigTamEszkozId(id, this);
}
protected internal virtual bool LoadByIktatottDokumentumCsatolmanyId(int id)
{
return m_DA.LoadByIktatottDokumentumCsatolmanyId(id, this);
}
protected internal virtual bool LoadByEpjTanuloiAdatId(int id)
{
return m_DA.LoadByEpjTanuloiAdatId(id, this);
}
protected internal virtual bool LoadByDualisSzerzodesFileId(int id)
{
return m_DA.LoadByDualisSzerzodesFileId(id, this);
}
protected internal virtual bool LoadByMufajTipusId(int id)
{
return m_DA.LoadByMufajTipusId(id, this);
}
protected internal virtual bool LoadByTanszakTipusId(int id)
{
return m_DA.LoadByTanszakTipusId(id, this);
}
protected internal virtual bool LoadByNemzetisegTipusId(int id)
{
return m_DA.LoadByNemzetisegTipusId(id, this);
}
protected internal virtual bool LoadByFelekezetTipusId(int id)
{
return m_DA.LoadByFelekezetTipusId(id, this);
}
protected internal virtual bool LoadByTKJogalapTipusId(int id)
{
return m_DA.LoadByTKJogalapTipusId(id, this);
}
protected internal virtual bool LoadByTartozkodasJogcimTipusId(int id)
{
return m_DA.LoadByTartozkodasJogcimTipusId(id, this);
}
protected internal virtual bool LoadByTartJogOkmanyTipusId(int id)
{
return m_DA.LoadByTartJogOkmanyTipusId(id, this);
}
protected internal virtual bool LoadByKepesitesTipusId(int id)
{
return m_DA.LoadByKepesitesTipusId(id, this);
}
protected internal virtual bool LoadBySzirStatTanuloId(int id)
{
return m_DA.LoadBySzirStatTanuloId(id, this);
}
protected internal virtual bool LoadBySzirStatFeladatellatasiHelyId(int id)
{
return m_DA.LoadBySzirStatFeladatellatasiHelyId(id, this);
}
protected internal virtual bool LoadByFogyatekossagTipusId(int id)
{
return m_DA.LoadByFogyatekossagTipusId(id, this);
}
protected internal virtual bool LoadByOgOrarendId(int id)
{
return m_DA.LoadByOgOrarendId(id, this);
}
protected internal virtual bool LoadBySzirStatKonyvtarId(int id)
{
return m_DA.LoadBySzirStatKonyvtarId(id, this);
}
protected internal virtual bool LoadByEszkozIgenylesId(int id)
{
return m_DA.LoadByEszkozIgenylesId(id, this);
}
protected internal virtual bool LoadBySzakmaReszSzakmaTipusId(int id)
{
return m_DA.LoadBySzakmaReszSzakmaTipusId(id, this);
}
protected internal virtual bool LoadByAgazatReszSzakmaTipusId(int id)
{
return m_DA.LoadByAgazatReszSzakmaTipusId(id, this);
}
protected internal virtual bool LoadByReszSzakmaTipusId(int id)
{
return m_DA.LoadByReszSzakmaTipusId(id, this);
}
protected internal virtual bool LoadByMunkaSzerzodesId(int id)
{
return m_DA.LoadByMunkaSzerzodesId(id, this);
}
protected internal virtual bool LoadByEszkozIgenylesStatuszId(int id)
{
return m_DA.LoadByEszkozIgenylesStatuszId(id, this);
}
protected internal virtual bool LoadByJogvMegszuneseJogcimTipusId(int id)
{
return m_DA.LoadByJogvMegszuneseJogcimTipusId(id, this);
}
protected internal virtual bool LoadByTbJogviszonyTipusId(int id)
{
return m_DA.LoadByTbJogviszonyTipusId(id, this);
}
protected internal virtual bool LoadByTbJogviszonyId(int id)
{
return m_DA.LoadByTbJogviszonyId(id, this);
}
protected internal virtual bool LoadByAgazatAlapOktMegnevTipusId(int id)
{
return m_DA.LoadByAgazatAlapOktMegnevTipusId(id, this);
}
protected internal virtual bool LoadByJogvKeletkezeseJogcimTipusId(int id)
{
return m_DA.LoadByJogvKeletkezeseJogcimTipusId(id, this);
}
protected internal virtual bool LoadByAgazatAlapVizsgaEredTipusId(int id)
{
return m_DA.LoadByAgazatAlapVizsgaEredTipusId(id, this);
}
protected internal virtual bool LoadByErtekelesTantargyiId(int id)
{
return m_DA.LoadByErtekelesTantargyiId(id, this);
}
protected internal virtual bool LoadByErtekelesMagSzorNyelvId(int id)
{
return m_DA.LoadByErtekelesMagSzorNyelvId(id, this);
}
protected internal virtual bool LoadByErtekelesMagSzorId(int id)
{
return m_DA.LoadByErtekelesMagSzorId(id, this);
}
protected internal virtual bool LoadByErtekelesTantargyiNyelvId(int id)
{
return m_DA.LoadByErtekelesTantargyiNyelvId(id, this);
}
protected internal virtual bool LoadBySzervezetId(int id)
{
return m_DA.LoadBySzervezetId(id, this);
}
protected internal virtual bool LoadByUjSzktSzakmajegyzekOsszerendelesId(int id)
{
return m_DA.LoadByUjSzktSzakmajegyzekOsszerendelesId(id, this);
}
protected internal virtual bool LoadByNktOsszerendelesId(int id)
{
return m_DA.LoadByNktOsszerendelesId(id, this);
}
protected internal virtual bool LoadByRegiSzktOsszerendelesId(int id)
{
return m_DA.LoadByRegiSzktOsszerendelesId(id, this);
}
protected internal virtual bool LoadByUjSzktReszszakmaOsszerendelesId(int id)
{
return m_DA.LoadByUjSzktReszszakmaOsszerendelesId(id, this);
}
protected internal virtual bool LoadByDualisHelyszinTipusId(int id)
{
return m_DA.LoadByDualisHelyszinTipusId(id, this);
}
protected internal virtual bool LoadBySzirStatNemAllamiOktKoltsId(int id)
{
return m_DA.LoadBySzirStatNemAllamiOktKoltsId(id, this);
}
protected internal virtual bool LoadByApaczaiKgrJogosultId(int id)
{
return m_DA.LoadByApaczaiKgrJogosultId(id, this);
}
protected internal virtual bool LoadBySzakmunkaSzerzodesId(int id)
{
return m_DA.LoadBySzakmunkaSzerzodesId(id, this);
}
protected internal virtual bool LoadByNyugdijTipusId(int id)
{
return m_DA.LoadByNyugdijTipusId(id, this);
}
protected internal virtual bool LoadByTanulasiEgysegId(int id)
{
return m_DA.LoadByTanulasiEgysegId(id, this);
}
#region Tanev (*) -> Intezmeny (1)
protected internal int m_IntezmenyId = -1;
///
/// A(z) Intezmeny asszociáció végpontjának ID-ja.
///
///
/// - Insert() előtt célszerű kitölteni
/// - Update() nincs rá hatással: ezt a mezőt nem frissíti
/// - LoadByID() felhozza ezt a mezőt
///
public virtual int IntezmenyId
{
get
{
return InternalIntezmenyId;
}
set
{
InternalIntezmenyId = value;
}
}
///
/// Ez egy külön bejárat a DA számára
///
internal int InternalIntezmenyId
{
get
{
if (m_Intezmeny != null)
{
return m_Intezmeny.ID;
}
else
{
return m_IntezmenyId;// XXX az meg nem teljesen OK
}
}
set
{
CheckModifyable();
if (m_IntezmenyId != value)
{
m_IntezmenyId = value;
m_Intezmeny = null;
FieldModified("IntezmenyId", value);
}
}
}
///
/// Ez egy külön bejárat a DA számára
///
internal void ModifyIntezmeny(Intezmeny value)
{
m_IntezmenyId = value != null ? value.ID : -1;
m_Intezmeny = value;
FieldModified("IntezmenyId", value != null ? (object)value.ID : DBNull.Value);
}
protected internal void SetIntezmeny(Intezmeny value)
{
m_Intezmeny = value;
if (value != null)
{
m_IntezmenyId = value.ID;
}
else
{
m_IntezmenyId = -1;
}
}
protected Intezmeny m_Intezmeny = null;
IIntezmeny ITanev.Intezmeny
{
get { return Intezmeny; }
set { Intezmeny = value as Intezmeny; }
}
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Intezmeny entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Intezmeny", EntityPropertyBaseType.Entity, typeof(Intezmeny), EntityCopyMethod.ShallowCopy)]
public virtual Intezmeny Intezmeny
{
get
{
if ((m_Intezmeny == null) && (m_IntezmenyId != -1))
{
SDA.Kreta.Entities.Intezmeny partner = SDA.Kreta.Entities.Intezmeny.GiveAnInstance();
partner.LoadByID(m_IntezmenyId);
this.SetIntezmeny(partner);
}
// természetesen null-t adunk vissza, ha nem tudtunk felhozni semmit
return m_Intezmeny;
}
set
{
CheckModifyable();
if (value != null)
{
if ((m_Intezmeny == null) || (value.ID != m_Intezmeny.ID))
{
if (value.State != EntityState.Initialized)
{
throw new EntityStateException(value.State);
}
if ((this.State != EntityState.New))
{
// Lista van a másik oldalon, úgyhogy a lista DA-ját használjuk
SDA.Kreta.Entities.Intezmeny_Tanev_DA da = new Intezmeny_Tanev_DA(value);
da.AddItem(this);
this.SetIntezmeny(value);
}
else
{
this.SetIntezmeny(value);
}
FieldModified("IntezmenyId", value.ID);
}
}
else
{
// ki kell törölni a kapcsolatot az adatbázisban
this.SetIntezmeny(null);
UpdateAssociations();
FieldModified("IntezmenyId", DBNull.Value);
}
}
}
#endregion
#region Tanev (1) -> Tanulo (*)
protected IAssociatedEntityCollection m_FelvettTanulok = null;
IReadOnlyList ITanev.FelvettTanulok => FelvettTanulok.Cast().ToList();
///
/// Melyik tanévben lett felvéve az intézménybe
///
///
/// Az UML modellben szereplő Tanev és Tanulo entitások közötti asszociáció megvalósítása.
///
[EntityProperty("FelvettTanulok", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "FelvetelTaneveId")]
public virtual IAssociatedEntityCollection FelvettTanulok
{
get
{
if (m_FelvettTanulok == null)
{
m_FelvettTanulok = new AssociatedEntityCollection(
new Tanev_FelvettTanulok_DA(this)
);
m_FelvettTanulok.Load();
}
return m_FelvettTanulok;
}
}
#endregion
#region Tanev (1) -> IntezmenyAdatok (*)
protected IAssociatedEntityCollection m_IntezmenyAdatok = null;
IReadOnlyList ITanev.IntezmenyAdatok => IntezmenyAdatok.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és IntezmenyAdatok entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IntezmenyAdatok", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection IntezmenyAdatok
{
get
{
if (m_IntezmenyAdatok == null)
{
m_IntezmenyAdatok = new AssociatedEntityCollection(
new Tanev_IntezmenyAdatok_DA(this)
);
m_IntezmenyAdatok.Load();
}
return m_IntezmenyAdatok;
}
}
#endregion
#region Tanev (1) -> IntezmenyAdatszolgaltatas (*)
protected IAssociatedEntityCollection m_IntezmenyAdatszolgaltatas = null;
IReadOnlyList ITanev.IntezmenyAdatszolgaltatas => IntezmenyAdatszolgaltatas.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és IntezmenyAdatszolgaltatas entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IntezmenyAdatszolgaltatas", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection IntezmenyAdatszolgaltatas
{
get
{
if (m_IntezmenyAdatszolgaltatas == null)
{
m_IntezmenyAdatszolgaltatas = new AssociatedEntityCollection(
new Tanev_IntezmenyAdatszolgaltatas_DA(this)
);
m_IntezmenyAdatszolgaltatas.Load();
}
return m_IntezmenyAdatszolgaltatas;
}
}
#endregion
#region Tanev (1) -> TanuloTanugyiAdatok (*)
protected IAssociatedEntityCollection m_FelvettTanulokTanugyiAdatok = null;
IReadOnlyList ITanev.FelvettTanulokTanugyiAdatok => FelvettTanulokTanugyiAdatok.Cast().ToList();
///
/// Melyik tanévben lett felvéve az intézménybe
///
///
/// Az UML modellben szereplő Tanev és TanuloTanugyiAdatok entitások közötti asszociáció megvalósítása.
///
[EntityProperty("FelvettTanulokTanugyiAdatok", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "FelvetelTaneveId")]
public virtual IAssociatedEntityCollection FelvettTanulokTanugyiAdatok
{
get
{
if (m_FelvettTanulokTanugyiAdatok == null)
{
m_FelvettTanulokTanugyiAdatok = new AssociatedEntityCollection(
new Tanev_FelvettTanulokTanugyiAdatok_DA(this)
);
m_FelvettTanulokTanugyiAdatok.Load();
}
return m_FelvettTanulokTanugyiAdatok;
}
}
#endregion
#region Tanev (1) -> Felhasznalo (*)
protected IAssociatedEntityCollection m_Felhasznalo = null;
IReadOnlyList ITanev.Felhasznalo => Felhasznalo.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Felhasznalo entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Felhasznalo", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Felhasznalo
{
get
{
if (m_Felhasznalo == null)
{
m_Felhasznalo = new AssociatedEntityCollection(
new Tanev_Felhasznalo_DA(this)
);
m_Felhasznalo.Load();
}
return m_Felhasznalo;
}
}
#endregion
#region Tanev (1) -> Email (*)
protected IAssociatedEntityCollection m_Email = null;
IReadOnlyList ITanev.Email => Email.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Email entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Email", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Email
{
get
{
if (m_Email == null)
{
m_Email = new AssociatedEntityCollection(
new Tanev_Email_DA(this)
);
m_Email.Load();
}
return m_Email;
}
}
#endregion
#region Tanev (1) -> Cim (*)
protected IAssociatedEntityCollection m_Cim = null;
IReadOnlyList ITanev.Cim => Cim.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Cim entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Cim", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Cim
{
get
{
if (m_Cim == null)
{
m_Cim = new AssociatedEntityCollection(
new Tanev_Cim_DA(this)
);
m_Cim.Load();
}
return m_Cim;
}
}
#endregion
#region Tanev (1) -> Szerepkor (*)
protected IAssociatedEntityCollection m_Szerepkor = null;
IReadOnlyList ITanev.Szerepkor => Szerepkor.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Szerepkor entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Szerepkor", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Szerepkor
{
get
{
if (m_Szerepkor == null)
{
m_Szerepkor = new AssociatedEntityCollection(
new Tanev_Szerepkor_DA(this)
);
m_Szerepkor.Load();
}
return m_Szerepkor;
}
}
#endregion
#region Tanev (1) -> Telefon (*)
protected IAssociatedEntityCollection m_Telefon = null;
IReadOnlyList ITanev.Telefon => Telefon.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Telefon entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Telefon", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Telefon
{
get
{
if (m_Telefon == null)
{
m_Telefon = new AssociatedEntityCollection(
new Tanev_Telefon_DA(this)
);
m_Telefon.Load();
}
return m_Telefon;
}
}
#endregion
#region Tanev (1) -> DictionaryItemBase (*)
protected IAssociatedEntityCollection m_DictionaryItemBase = null;
IReadOnlyList ITanev.DictionaryItemBase => DictionaryItemBase.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és DictionaryItemBase entitások közötti asszociáció megvalósítása.
///
[EntityProperty("DictionaryItemBase", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection DictionaryItemBase
{
get
{
if (m_DictionaryItemBase == null)
{
m_DictionaryItemBase = new AssociatedEntityCollection(
new Tanev_DictionaryItemBase_DA(this)
);
m_DictionaryItemBase.Load();
}
return m_DictionaryItemBase;
}
}
#endregion
#region Tanev (1) -> Nem (*)
protected IAssociatedEntityCollection m_Nem = null;
IReadOnlyList ITanev.Nem => Nem.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Nem entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Nem", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection Nem
{
get
{
if (m_Nem == null)
{
m_Nem = new AssociatedEntityCollection(
new Tanev_Nem_DA(this)
);
m_Nem.Load();
}
return m_Nem;
}
}
#endregion
#region Tanev (1) -> CimTipus (*)
protected IAssociatedEntityCollection m_CimTipus = null;
IReadOnlyList ITanev.CimTipus => CimTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és CimTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("CimTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection CimTipus
{
get
{
if (m_CimTipus == null)
{
m_CimTipus = new AssociatedEntityCollection(
new Tanev_CimTipus_DA(this)
);
m_CimTipus.Load();
}
return m_CimTipus;
}
}
#endregion
#region Tanev (1) -> Allampolgarsag (*)
protected IAssociatedEntityCollection m_Allampolgarsag = null;
IReadOnlyList ITanev.Allampolgarsag => Allampolgarsag.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Allampolgarsag entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Allampolgarsag", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection Allampolgarsag
{
get
{
if (m_Allampolgarsag == null)
{
m_Allampolgarsag = new AssociatedEntityCollection(
new Tanev_Allampolgarsag_DA(this)
);
m_Allampolgarsag.Load();
}
return m_Allampolgarsag;
}
}
#endregion
#region Tanev (1) -> TelefonTipus (*)
protected IAssociatedEntityCollection m_TelefonTipus = null;
IReadOnlyList ITanev.TelefonTipus => TelefonTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és TelefonTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("TelefonTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection TelefonTipus
{
get
{
if (m_TelefonTipus == null)
{
m_TelefonTipus = new AssociatedEntityCollection(
new Tanev_TelefonTipus_DA(this)
);
m_TelefonTipus.Load();
}
return m_TelefonTipus;
}
}
#endregion
#region Tanev (1) -> EmailTipus (*)
protected IAssociatedEntityCollection m_EmailTipus = null;
IReadOnlyList ITanev.EmailTipus => EmailTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és EmailTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EmailTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection EmailTipus
{
get
{
if (m_EmailTipus == null)
{
m_EmailTipus = new AssociatedEntityCollection(
new Tanev_EmailTipus_DA(this)
);
m_EmailTipus.Load();
}
return m_EmailTipus;
}
}
#endregion
#region Tanev (1) -> EsemenyStatusz (*)
protected IAssociatedEntityCollection m_EsemenyStatusz = null;
IReadOnlyList ITanev.EsemenyStatusz => EsemenyStatusz.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és EsemenyStatusz entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EsemenyStatusz", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection EsemenyStatusz
{
get
{
if (m_EsemenyStatusz == null)
{
m_EsemenyStatusz = new AssociatedEntityCollection(
new Tanev_EsemenyStatusz_DA(this)
);
m_EsemenyStatusz.Load();
}
return m_EsemenyStatusz;
}
}
#endregion
#region Tanev (1) -> OrszagTipus (*)
protected IAssociatedEntityCollection m_OrszagTipus = null;
IReadOnlyList ITanev.OrszagTipus => OrszagTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és OrszagTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("OrszagTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection OrszagTipus
{
get
{
if (m_OrszagTipus == null)
{
m_OrszagTipus = new AssociatedEntityCollection(
new Tanev_OrszagTipus_DA(this)
);
m_OrszagTipus.Load();
}
return m_OrszagTipus;
}
}
#endregion
#region Tanev (1) -> MunkaviszonyJellege (*)
protected IAssociatedEntityCollection m_MunkaviszonyJellege = null;
IReadOnlyList ITanev.MunkaviszonyJellege => MunkaviszonyJellege.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és MunkaviszonyJellege entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MunkaviszonyJellege", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection MunkaviszonyJellege
{
get
{
if (m_MunkaviszonyJellege == null)
{
m_MunkaviszonyJellege = new AssociatedEntityCollection(
new Tanev_MunkaviszonyJellege_DA(this)
);
m_MunkaviszonyJellege.Load();
}
return m_MunkaviszonyJellege;
}
}
#endregion
#region Tanev (1) -> DiakigazolvanyIgenyStatusz (*)
protected IAssociatedEntityCollection m_DiakigazolvanyIgenyStatusz = null;
IReadOnlyList ITanev.DiakigazolvanyIgenyStatusz => DiakigazolvanyIgenyStatusz.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és DiakigazolvanyIgenyStatusz entitások közötti asszociáció megvalósítása.
///
[EntityProperty("DiakigazolvanyIgenyStatusz", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection DiakigazolvanyIgenyStatusz
{
get
{
if (m_DiakigazolvanyIgenyStatusz == null)
{
m_DiakigazolvanyIgenyStatusz = new AssociatedEntityCollection(
new Tanev_DiakigazolvanyIgenyStatusz_DA(this)
);
m_DiakigazolvanyIgenyStatusz.Load();
}
return m_DiakigazolvanyIgenyStatusz;
}
}
#endregion
#region Tanev (1) -> UserProfile (*)
protected IAssociatedEntityCollection m_UserProfile = null;
IReadOnlyList ITanev.UserProfile => UserProfile.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és UserProfile entitások közötti asszociáció megvalósítása.
///
[EntityProperty("UserProfile", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection UserProfile
{
get
{
if (m_UserProfile == null)
{
m_UserProfile = new AssociatedEntityCollection(
new Tanev_UserProfile_DA(this)
);
m_UserProfile.Load();
}
return m_UserProfile;
}
}
#endregion
#region Tanev (1) -> KozteruletJelleg (*)
protected IAssociatedEntityCollection m_KozteruletJelleg = null;
IReadOnlyList ITanev.KozteruletJelleg => KozteruletJelleg.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és KozteruletJelleg entitások közötti asszociáció megvalósítása.
///
[EntityProperty("KozteruletJelleg", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection KozteruletJelleg
{
get
{
if (m_KozteruletJelleg == null)
{
m_KozteruletJelleg = new AssociatedEntityCollection(
new Tanev_KozteruletJelleg_DA(this)
);
m_KozteruletJelleg.Load();
}
return m_KozteruletJelleg;
}
}
#endregion
#region Tanev (1) -> DiakigazolvanyIgenyTipus (*)
protected IAssociatedEntityCollection m_DiakigazolvanyIgenyTipus = null;
IReadOnlyList ITanev.DiakigazolvanyIgenyTipus => DiakigazolvanyIgenyTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és DiakigazolvanyIgenyTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("DiakigazolvanyIgenyTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection DiakigazolvanyIgenyTipus
{
get
{
if (m_DiakigazolvanyIgenyTipus == null)
{
m_DiakigazolvanyIgenyTipus = new AssociatedEntityCollection(
new Tanev_DiakigazolvanyIgenyTipus_DA(this)
);
m_DiakigazolvanyIgenyTipus.Load();
}
return m_DiakigazolvanyIgenyTipus;
}
}
#endregion
#region Tanev (1) -> Honapok (*)
protected IAssociatedEntityCollection m_Honapok = null;
IReadOnlyList ITanev.Honapok => Honapok.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Honapok entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Honapok", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection Honapok
{
get
{
if (m_Honapok == null)
{
m_Honapok = new AssociatedEntityCollection(
new Tanev_Honapok_DA(this)
);
m_Honapok.Load();
}
return m_Honapok;
}
}
#endregion
#region Tanev (0..1) -> FelhasznaloBelepesTortenet (*)
protected IAssociatedEntityCollection m_FelhasznaloBelepesTortenet = null;
IReadOnlyList ITanev.FelhasznaloBelepesTortenet => FelhasznaloBelepesTortenet.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és FelhasznaloBelepesTortenet entitások közötti asszociáció megvalósítása.
///
[EntityProperty("FelhasznaloBelepesTortenet", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection FelhasznaloBelepesTortenet
{
get
{
if (m_FelhasznaloBelepesTortenet == null)
{
m_FelhasznaloBelepesTortenet = new AssociatedEntityCollection(
new Tanev_FelhasznaloBelepesTortenet_DA(this)
);
m_FelhasznaloBelepesTortenet.Load();
}
return m_FelhasznaloBelepesTortenet;
}
}
#endregion
#region Tanev (1) -> Megye (*)
protected IAssociatedEntityCollection m_Megye = null;
IReadOnlyList ITanev.Megye => Megye.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Megye entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Megye", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection Megye
{
get
{
if (m_Megye == null)
{
m_Megye = new AssociatedEntityCollection(
new Tanev_Megye_DA(this)
);
m_Megye.Load();
}
return m_Megye;
}
}
#endregion
#region Tanev (0..1) -> Log (*)
protected IAssociatedEntityCollection m_Log = null;
IReadOnlyList ITanev.Log => Log.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Log entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Log", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Log
{
get
{
if (m_Log == null)
{
m_Log = new AssociatedEntityCollection(
new Tanev_Log_DA(this)
);
m_Log.Load();
}
return m_Log;
}
}
#endregion
#region Tanev (1) -> FelhasznaloBelepes (*)
protected IAssociatedEntityCollection m_FelhasznaloBelepes = null;
IReadOnlyList ITanev.FelhasznaloBelepes => FelhasznaloBelepes.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és FelhasznaloBelepes entitások közötti asszociáció megvalósítása.
///
[EntityProperty("FelhasznaloBelepes", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection FelhasznaloBelepes
{
get
{
if (m_FelhasznaloBelepes == null)
{
m_FelhasznaloBelepes = new AssociatedEntityCollection(
new Tanev_FelhasznaloBelepes_DA(this)
);
m_FelhasznaloBelepes.Load();
}
return m_FelhasznaloBelepes;
}
}
#endregion
#region Tanev (1) -> MagantanulosagOka (*)
protected IAssociatedEntityCollection m_MagantanulosagOka = null;
IReadOnlyList ITanev.MagantanulosagOka => MagantanulosagOka.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és MagantanulosagOka entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MagantanulosagOka", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection MagantanulosagOka
{
get
{
if (m_MagantanulosagOka == null)
{
m_MagantanulosagOka = new AssociatedEntityCollection(
new Tanev_MagantanulosagOka_DA(this)
);
m_MagantanulosagOka.Load();
}
return m_MagantanulosagOka;
}
}
#endregion
#region Tanev (1) -> TeremTipus (*)
protected IAssociatedEntityCollection m_TeremTipus = null;
IReadOnlyList ITanev.TeremTipus => TeremTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és TeremTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("TeremTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection TeremTipus
{
get
{
if (m_TeremTipus == null)
{
m_TeremTipus = new AssociatedEntityCollection(
new Tanev_TeremTipus_DA(this)
);
m_TeremTipus.Load();
}
return m_TeremTipus;
}
}
#endregion
#region Tanev (1) -> IngyenesTankonyvEllatas (*)
protected IAssociatedEntityCollection m_IngyenesTankonyvEllatas = null;
IReadOnlyList ITanev.IngyenesTankonyvEllatas => IngyenesTankonyvEllatas.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és IngyenesTankonyvEllatas entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IngyenesTankonyvEllatas", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection IngyenesTankonyvEllatas
{
get
{
if (m_IngyenesTankonyvEllatas == null)
{
m_IngyenesTankonyvEllatas = new AssociatedEntityCollection(
new Tanev_IngyenesTankonyvEllatas_DA(this)
);
m_IngyenesTankonyvEllatas.Load();
}
return m_IngyenesTankonyvEllatas;
}
}
#endregion
#region Tanev (1) -> Eszkoz (*)
protected IAssociatedEntityCollection m_Eszkoz = null;
IReadOnlyList ITanev.Eszkoz => Eszkoz.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Eszkoz entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Eszkoz", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Eszkoz
{
get
{
if (m_Eszkoz == null)
{
m_Eszkoz = new AssociatedEntityCollection(
new Tanev_Eszkoz_DA(this)
);
m_Eszkoz.Load();
}
return m_Eszkoz;
}
}
#endregion
#region Tanev (1) -> EszkozKategoria (*)
protected IAssociatedEntityCollection m_EszkozKategoria = null;
IReadOnlyList ITanev.EszkozKategoria => EszkozKategoria.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és EszkozKategoria entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EszkozKategoria", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection EszkozKategoria
{
get
{
if (m_EszkozKategoria == null)
{
m_EszkozKategoria = new AssociatedEntityCollection(
new Tanev_EszkozKategoria_DA(this)
);
m_EszkozKategoria.Load();
}
return m_EszkozKategoria;
}
}
#endregion
#region Tanev (1) -> EszkozTipus (*)
protected IAssociatedEntityCollection m_EszkozTipus = null;
IReadOnlyList ITanev.EszkozTipus => EszkozTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és EszkozTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EszkozTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection EszkozTipus
{
get
{
if (m_EszkozTipus == null)
{
m_EszkozTipus = new AssociatedEntityCollection(
new Tanev_EszkozTipus_DA(this)
);
m_EszkozTipus.Load();
}
return m_EszkozTipus;
}
}
#endregion
#region Tanev (1) -> Terem (*)
protected IAssociatedEntityCollection m_Terem = null;
IReadOnlyList ITanev.Terem => Terem.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Terem entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Terem", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection Terem
{
get
{
if (m_Terem == null)
{
m_Terem = new AssociatedEntityCollection(
new Tanev_Terem_DA(this)
);
m_Terem.Load();
}
return m_Terem;
}
}
#endregion
#region Tanev (1) -> MunkaviszonyTipus (*)
protected IAssociatedEntityCollection m_MunkaviszonyTipus = null;
IReadOnlyList ITanev.MunkaviszonyTipus => MunkaviszonyTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és MunkaviszonyTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MunkaviszonyTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection MunkaviszonyTipus
{
get
{
if (m_MunkaviszonyTipus == null)
{
m_MunkaviszonyTipus = new AssociatedEntityCollection(
new Tanev_MunkaviszonyTipus_DA(this)
);
m_MunkaviszonyTipus.Load();
}
return m_MunkaviszonyTipus;
}
}
#endregion
#region Tanev (1) -> IgazolvanyTipus (*)
protected IAssociatedEntityCollection m_IgazolvanyTipus = null;
IReadOnlyList ITanev.IgazolvanyTipus => IgazolvanyTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és IgazolvanyTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IgazolvanyTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection IgazolvanyTipus
{
get
{
if (m_IgazolvanyTipus == null)
{
m_IgazolvanyTipus = new AssociatedEntityCollection(
new Tanev_IgazolvanyTipus_DA(this)
);
m_IgazolvanyTipus.Load();
}
return m_IgazolvanyTipus;
}
}
#endregion
#region Tanev (1) -> Anyanyelv (*)
protected IAssociatedEntityCollection m_Anyanyelv = null;
IReadOnlyList ITanev.Anyanyelv => Anyanyelv.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Anyanyelv entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Anyanyelv", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection Anyanyelv
{
get
{
if (m_Anyanyelv == null)
{
m_Anyanyelv = new AssociatedEntityCollection(
new Tanev_Anyanyelv_DA(this)
);
m_Anyanyelv.Load();
}
return m_Anyanyelv;
}
}
#endregion
#region Tanev (1) -> Alkalmazott (*)
protected IAssociatedEntityCollection m_Alkalmazott = null;
IReadOnlyList ITanev.Alkalmazott => Alkalmazott.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és Alkalmazott entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Alkalmazott", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection Alkalmazott
{
get
{
if (m_Alkalmazott == null)
{
m_Alkalmazott = new AssociatedEntityCollection(
new Tanev_Alkalmazott_DA(this)
);
m_Alkalmazott.Load();
}
return m_Alkalmazott;
}
}
#endregion
#region Tanev (1) -> MukodesiHely (*)
protected IAssociatedEntityCollection m_MukodesiHely = null;
IReadOnlyList ITanev.MukodesiHely => MukodesiHely.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és MukodesiHely entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MukodesiHely", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "TanevId")]
public virtual IAssociatedEntityCollection MukodesiHely
{
get
{
if (m_MukodesiHely == null)
{
m_MukodesiHely = new AssociatedEntityCollection(
new Tanev_MukodesiHely_DA(this)
);
m_MukodesiHely.Load();
}
return m_MukodesiHely;
}
}
#endregion
#region Tanev (1) -> MunkakorTipus (*)
protected IAssociatedEntityCollection m_MunkakorTipus = null;
IReadOnlyList ITanev.MunkakorTipus => MunkakorTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Tanev és MunkakorTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MunkakorTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlTanevId")]
public virtual IAssociatedEntityCollection MunkakorTipus
{
get
{
if (m_MunkakorTipus == null)
{
m_MunkakorTipus = new AssociatedEntityCollection(
new Tanev_MunkakorTipus_DA(this)
);
m_MunkakorTipus.Load();
}
return m_MunkakorTipus;
}
}
#endregion
#region Tanev (1) -> Gondviselo (*)
protected IAssociatedEntityCollection