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 Intezmeny 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("Intezmeny")]
// alapértelmezett EntityHistoryMode
public class Intezmeny : Entity, IIntezmeny
{
internal protected Intezmeny()
: base()
{
}
public class AttributeInfo
{
public const string Azonosito = "Azonosito";
public const string FenntartoAzonosito = "FenntartoAzonosito";
public const string NeptunNaploLink = "NeptunNaploLink";
public const string PoszeidonBejelentkezesiNev = "PoszeidonBejelentkezesiNev";
public const string AlternativAzonosito = "AlternativAzonosito";
public const string FenntartoEmailCim = "FenntartoEmailCim";
public const string IktatoSzervezetAzonosito = "IktatoSzervezetAzonosito";
public const string NexiusId = "NexiusId";
public const string Guid = "Guid";
public const string IsArchiv = "IsArchiv";
}
public class AttributeLengthInfo
{
public const int AzonositoLength = 30;
public const int FenntartoAzonositoLength = 20;
public const int NeptunNaploLinkLength = 255;
public const int PoszeidonBejelentkezesiNevLength = 255;
public const int AlternativAzonositoLength = 30;
public const int FenntartoEmailCimLength = 255;
public const int IktatoSzervezetAzonositoLength = 255;
public const int NexiusIdLength = 50;
}
#region General
private IntezmenyDA m_DA = new IntezmenyDA();
protected static Intezmeny FakeIntezmeny { get; set; }
public static Intezmeny GiveAnInstance()
{
Intezmeny result = FakeIntezmeny == null
? new Intezmeny()
: (Intezmeny)FakeIntezmeny.MemberwiseClone();
result.Reset();
result.SetDefaultData();
return result;
}
protected void SetDefaultData()
{
}
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 IntezmenyDA().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 IntezmenyDA().LoadWithFilter(result, filter, columnFilterMode, columns, commandParameters);
return result;
}
protected override void StoreOriginalValues()
{
base.StoreOriginalValues();
OriginalValues.Add("Azonosito", (object)m_Azonosito);
OriginalValues.Add("FenntartoAzonosito", (FenntartoAzonosito == null ? (object)DBNull.Value : (object)m_FenntartoAzonosito));
OriginalValues.Add("NeptunNaploLink", (NeptunNaploLink == null ? (object)DBNull.Value : (object)m_NeptunNaploLink));
OriginalValues.Add("PoszeidonBejelentkezesiNev", (PoszeidonBejelentkezesiNev == null ? (object)DBNull.Value : (object)m_PoszeidonBejelentkezesiNev));
OriginalValues.Add("AlternativAzonosito", (AlternativAzonosito == null ? (object)DBNull.Value : (object)m_AlternativAzonosito));
OriginalValues.Add("FenntartoEmailCim", (FenntartoEmailCim == null ? (object)DBNull.Value : (object)m_FenntartoEmailCim));
OriginalValues.Add("IktatoSzervezetAzonosito", (IktatoSzervezetAzonosito == null ? (object)DBNull.Value : (object)m_IktatoSzervezetAzonosito));
OriginalValues.Add("NexiusId", (NexiusId == null ? (object)DBNull.Value : (object)m_NexiusId));
OriginalValues.Add("Guid", (Guid == null ? (object)DBNull.Value : (object)m_Guid));
OriginalValues.Add("IsArchiv", (object)m_IsArchiv);
OriginalValues.Add("FenntartoId", (m_FenntartoId < 0 ? (object)DBNull.Value : (object)m_FenntartoId));
}
#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_Azonosito != null && m_Azonosito.Length > 30)
{
throw new InvalidEntityAttributeException("Intezmeny", "Azonosito", EntityAttributeError.TooLong);
}
if (m_FenntartoAzonosito != null && m_FenntartoAzonosito.Length > 20)
{
throw new InvalidEntityAttributeException("Intezmeny", "FenntartoAzonosito", EntityAttributeError.TooLong);
}
if (m_NeptunNaploLink != null && m_NeptunNaploLink.Length > 255)
{
throw new InvalidEntityAttributeException("Intezmeny", "NeptunNaploLink", EntityAttributeError.TooLong);
}
if (m_PoszeidonBejelentkezesiNev != null && m_PoszeidonBejelentkezesiNev.Length > 255)
{
throw new InvalidEntityAttributeException("Intezmeny", "PoszeidonBejelentkezesiNev", EntityAttributeError.TooLong);
}
if (m_AlternativAzonosito != null && m_AlternativAzonosito.Length > 30)
{
throw new InvalidEntityAttributeException("Intezmeny", "AlternativAzonosito", EntityAttributeError.TooLong);
}
if (m_FenntartoEmailCim != null && m_FenntartoEmailCim.Length > 255)
{
throw new InvalidEntityAttributeException("Intezmeny", "FenntartoEmailCim", EntityAttributeError.TooLong);
}
if (m_IktatoSzervezetAzonosito != null && m_IktatoSzervezetAzonosito.Length > 255)
{
throw new InvalidEntityAttributeException("Intezmeny", "IktatoSzervezetAzonosito", EntityAttributeError.TooLong);
}
if (m_NexiusId != null && m_NexiusId.Length > 50)
{
throw new InvalidEntityAttributeException("Intezmeny", "NexiusId", EntityAttributeError.TooLong);
}
}
// kötelező asszociációk ellenőrzése...
if (m_FenntartoId == -1) { throw new InvalidEntityAttributeException("Intezmeny", "FenntartoId", EntityAttributeError.Empty); }
}
#endregion
#region Alaphelyzetbe állítás
protected override void Reset()
{
base.Reset();
// alaphelyzetbe állítjuk az egyszerű mezőket
this.m_Azonosito = "";
this.m_FenntartoAzonosito = null;
this.m_NeptunNaploLink = null;
this.m_PoszeidonBejelentkezesiNev = null;
this.m_AlternativAzonosito = null;
this.m_FenntartoEmailCim = null;
this.m_IktatoSzervezetAzonosito = null;
this.m_NexiusId = null;
this.m_Guid = null;
this.m_IsArchiv = false;
// alaphelyzetbe állítjuk az asszociációkból származó mezőket
this.m_IntezmenyAdatok = null; // EntityCollection
this.m_Tanev = null; // EntityCollection
this.m_IntezmenyAdatszolgaltatas = null; // EntityCollection
this.m_FenntartoId = -1;
this.m_Fenntarto = null; // Entity
this.m_DashboardUzenetIntezmeny = null; // EntityCollection
this.m_IntezmenyConfig = 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.IntezmenyAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IntezmenyAdatok", EntityUtil.GetAssociationDescription("T_INTEZMENYADATOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Tanev.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Tanev", EntityUtil.GetAssociationDescription("T_TANEV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.IntezmenyAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IntezmenyAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_INTEZMENYADATSZOLGALTATAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
// Fenntarto esetében mi mutatunk a másikra: startrole: *, endrole: 1
if (this.DashboardUzenetIntezmeny.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DashboardUzenetIntezmeny", EntityUtil.GetAssociationDescription("T_DASHBOARDUZENETINTEZMENY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.IntezmenyConfig.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IntezmenyConfig", EntityUtil.GetAssociationDescription("T_INTEZMENYCONFIG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Felhasznalo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Felhasznalo", EntityUtil.GetAssociationDescription("T_FELHASZNALO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Email.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Email", EntityUtil.GetAssociationDescription("T_EMAIL_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Cim.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Cim", EntityUtil.GetAssociationDescription("T_CIM_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Szerepkor.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Szerepkor", EntityUtil.GetAssociationDescription("T_SZEREPKOR_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Telefon.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Telefon", EntityUtil.GetAssociationDescription("T_TELEFON_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DictionaryItemBase.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DictionaryItemBase", EntityUtil.GetAssociationDescription("T_DICTIONARYITEMBASE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Nem.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Nem", EntityUtil.GetAssociationDescription("T_NEM_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.CimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "CimTipus", EntityUtil.GetAssociationDescription("T_CIMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Allampolgarsag.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Allampolgarsag", EntityUtil.GetAssociationDescription("T_ALLAMPOLGARSAG_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TelefonTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TelefonTipus", EntityUtil.GetAssociationDescription("T_TELEFONTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EmailTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EmailTipus", EntityUtil.GetAssociationDescription("T_EMAILTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EsemenyStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EsemenyStatusz", EntityUtil.GetAssociationDescription("T_ESEMENYSTATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OrszagTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OrszagTipus", EntityUtil.GetAssociationDescription("T_ORSZAGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MunkaviszonyJellege.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MunkaviszonyJellege", EntityUtil.GetAssociationDescription("T_MUNKAVISZONYJELLEGE_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DiakigazolvanyIgenyStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DiakigazolvanyIgenyStatusz", EntityUtil.GetAssociationDescription("T_DIAKIGAZOLVANYIGENYSTATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.UserProfile.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "UserProfile", EntityUtil.GetAssociationDescription("T_USERPROFILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KozteruletJelleg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KozteruletJelleg", EntityUtil.GetAssociationDescription("T_KOZTERULETJELLEG_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DiakigazolvanyIgenyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DiakigazolvanyIgenyTipus", EntityUtil.GetAssociationDescription("T_DIAKIGAZOLVANYIGENYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Honapok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Honapok", EntityUtil.GetAssociationDescription("T_HONAPOK_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FelhasznaloBelepesTortenet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FelhasznaloBelepesTortenet", EntityUtil.GetAssociationDescription("T_FELHASZNALOBELEPESTORTENET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Megye.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Megye", EntityUtil.GetAssociationDescription("T_MEGYE_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Log.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Log", EntityUtil.GetAssociationDescription("T_LOG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.FelhasznaloBelepes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FelhasznaloBelepes", EntityUtil.GetAssociationDescription("T_FELHASZNALOBELEPES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MagantanulosagOka.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MagantanulosagOka", EntityUtil.GetAssociationDescription("T_MAGANTANULOSAGOKA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TeremTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TeremTipus", EntityUtil.GetAssociationDescription("T_TEREMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.IngyenesTankonyvEllatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IngyenesTankonyvEllatas", EntityUtil.GetAssociationDescription("T_INGYENESTANKONYVELLATAS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Eszkoz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Eszkoz", EntityUtil.GetAssociationDescription("T_ESZKOZ_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EszkozKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EszkozKategoria", EntityUtil.GetAssociationDescription("T_ESZKOZKATEGORIA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EszkozTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EszkozTipus", EntityUtil.GetAssociationDescription("T_ESZKOZTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Terem.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Terem", EntityUtil.GetAssociationDescription("T_TEREM_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MunkaviszonyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MunkaviszonyTipus", EntityUtil.GetAssociationDescription("T_MUNKAVISZONYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.IgazolvanyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IgazolvanyTipus", EntityUtil.GetAssociationDescription("T_IGAZOLVANYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Anyanyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Anyanyelv", EntityUtil.GetAssociationDescription("T_ANYANYELV_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Alkalmazott.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Alkalmazott", EntityUtil.GetAssociationDescription("T_ALKALMAZOTT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MukodesiHely.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MukodesiHely", EntityUtil.GetAssociationDescription("T_MUKODESIHELY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MunkakorTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MunkakorTipus", EntityUtil.GetAssociationDescription("T_MUNKAKORTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Gondviselo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Gondviselo", EntityUtil.GetAssociationDescription("T_GONDVISELO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Tanulo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Tanulo", EntityUtil.GetAssociationDescription("T_TANULO_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.RokonsagiFok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "RokonsagiFok", EntityUtil.GetAssociationDescription("T_ROKONSAGIFOK_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.CsoportTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "CsoportTipus", EntityUtil.GetAssociationDescription("T_CSOPORTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FenntartoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FenntartoTipus", EntityUtil.GetAssociationDescription("T_FENNTARTOTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MertekegysegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MertekegysegTipus", EntityUtil.GetAssociationDescription("T_MERTEKEGYSEGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EszkozCel.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EszkozCel", EntityUtil.GetAssociationDescription("T_ESZKOZCEL_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Csoport.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Csoport", EntityUtil.GetAssociationDescription("T_CSOPORT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EszkozJelleg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EszkozJelleg", EntityUtil.GetAssociationDescription("T_ESZKOZJELLEG_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TestnevelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TestnevelesTipus", EntityUtil.GetAssociationDescription("T_TESTNEVELESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanterviJelleg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanterviJelleg", EntityUtil.GetAssociationDescription("T_TANTERVIJELLEG_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Osztaly.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Osztaly", EntityUtil.GetAssociationDescription("T_OSZTALY_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OsztalyCsoport.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OsztalyCsoport", EntityUtil.GetAssociationDescription("T_OSZTALYCSOPORT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Vallas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Vallas", EntityUtil.GetAssociationDescription("T_VALLAS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.HatranyosHelyzetTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HatranyosHelyzetTipus", EntityUtil.GetAssociationDescription("T_HATRANYOSHELYZETTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EtkezesiKedvezmenyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EtkezesiKedvezmenyTipus", EntityUtil.GetAssociationDescription("T_ETKEZESIKEDVEZMENYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.LatasserultTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "LatasserultTipus", EntityUtil.GetAssociationDescription("T_LATASSERULTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.HallasserultTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HallasserultTipus", EntityUtil.GetAssociationDescription("T_HALLASSERULTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtelmiFogyatekosTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtelmiFogyatekosTipus", EntityUtil.GetAssociationDescription("T_ERTELMIFOGYATEKOSTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OktatasiNevelesiFeladat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OktatasiNevelesiFeladat", EntityUtil.GetAssociationDescription("T_OKTATASINEVELESIFELADAT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Tanterv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Tanterv", EntityUtil.GetAssociationDescription("T_TANTERV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Tantargy.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Tantargy", EntityUtil.GetAssociationDescription("T_TANTARGY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EvfolyamTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EvfolyamTipus", EntityUtil.GetAssociationDescription("T_EVFOLYAMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TargyKategoriaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TargyKategoriaTipus", EntityUtil.GetAssociationDescription("T_TARGYKATEGORIATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Foglalkozas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Foglalkozas", EntityUtil.GetAssociationDescription("T_FOGLALKOZAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.FoglalkozasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FoglalkozasTipus", EntityUtil.GetAssociationDescription("T_FOGLALKOZASTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.NapTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NapTipus", EntityUtil.GetAssociationDescription("T_NAPTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.HetiRendTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HetiRendTipus", EntityUtil.GetAssociationDescription("T_HETIRENDTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanevRendje.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanevRendje", EntityUtil.GetAssociationDescription("T_TANEVRENDJE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.HetNapjaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HetNapjaTipus", EntityUtil.GetAssociationDescription("T_HETNAPJATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.CsengetesiRend.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "CsengetesiRend", EntityUtil.GetAssociationDescription("T_CSENGETESIREND_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloCsoport.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloCsoport", EntityUtil.GetAssociationDescription("T_TANULOCSOPORT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OrarendiOra.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OrarendiOra", EntityUtil.GetAssociationDescription("T_ORARENDIORA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Tanmenet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Tanmenet", EntityUtil.GetAssociationDescription("T_TANMENET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.NaptariNap.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NaptariNap", EntityUtil.GetAssociationDescription("T_NAPTARINAP_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.HelyettesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HelyettesitesTipus", EntityUtil.GetAssociationDescription("T_HELYETTESITESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanitasiOra.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanitasiOra", EntityUtil.GetAssociationDescription("T_TANITASIORA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloErtekeles.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloErtekeles", EntityUtil.GetAssociationDescription("T_TANULOERTEKELES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesTipus", EntityUtil.GetAssociationDescription("T_ERTEKELESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OsztalyzatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OsztalyzatTipus", EntityUtil.GetAssociationDescription("T_OSZTALYZATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesMod.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesMod", EntityUtil.GetAssociationDescription("T_ERTEKELESMOD_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloMulasztas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloMulasztas", EntityUtil.GetAssociationDescription("T_TANULOMULASZTAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MulasztasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MulasztasTipus", EntityUtil.GetAssociationDescription("T_MULASZTASTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.CsengetesiRendOra.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "CsengetesiRendOra", EntityUtil.GetAssociationDescription("T_CSENGETESIRENDORA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.IgazolasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IgazolasTipus", EntityUtil.GetAssociationDescription("T_IGAZOLASTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EsemenyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EsemenyTipus", EntityUtil.GetAssociationDescription("T_ESEMENYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloEsemeny.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloEsemeny", EntityUtil.GetAssociationDescription("T_TANULOESEMENY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzorgalomErtekelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzorgalomErtekelesTipus", EntityUtil.GetAssociationDescription("T_SZORGALOMERTEKELESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MagatartasErtekelesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MagatartasErtekelesTipus", EntityUtil.GetAssociationDescription("T_MAGATARTASERTEKELESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Oralatogatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Oralatogatas", EntityUtil.GetAssociationDescription("T_ORALATOGATAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Igazolas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Igazolas", EntityUtil.GetAssociationDescription("T_IGAZOLAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.NaploEllenorzes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NaploEllenorzes", EntityUtil.GetAssociationDescription("T_NAPLOELLENORZES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloMentesseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloMentesseg", EntityUtil.GetAssociationDescription("T_TANULOMENTESSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EletpalyamodellStatuszok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EletpalyamodellStatuszok", EntityUtil.GetAssociationDescription("T_ELETPALYAMODELLSTATUSZOK_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EletpalyamodellFokozatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EletpalyamodellFokozatTipus", EntityUtil.GetAssociationDescription("T_ELETPALYAMODELLFOKOZATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.PedagogusEletpalyamodell.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "PedagogusEletpalyamodell", EntityUtil.GetAssociationDescription("T_PEDAGOGUSELETPALYAMODELL_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TevekenysegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TevekenysegTipus", EntityUtil.GetAssociationDescription("T_TEVEKENYSEGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtesitesSzinTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtesitesSzinTipus", EntityUtil.GetAssociationDescription("T_ERTESITESSZINTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtesitesTipus", EntityUtil.GetAssociationDescription("T_ERTESITESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Ertesites.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Ertesites", EntityUtil.GetAssociationDescription("T_ERTESITES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtesitesGeneralasTortenet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtesitesGeneralasTortenet", EntityUtil.GetAssociationDescription("T_ERTESITESGENERALASTORTENET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanariAtlagSuly.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanariAtlagSuly", EntityUtil.GetAssociationDescription("T_TANARIATLAGSULY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KizaroCsoportTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KizaroCsoportTipus", EntityUtil.GetAssociationDescription("T_KIZAROCSOPORTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OraTerv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OraTerv", EntityUtil.GetAssociationDescription("T_ORATERV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.RendszerBeallitas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "RendszerBeallitas", EntityUtil.GetAssociationDescription("T_RENDSZERBEALLITAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OraTervTargy.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OraTervTargy", EntityUtil.GetAssociationDescription("T_ORATERVTARGY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.RendszerBeallitasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "RendszerBeallitasTipus", EntityUtil.GetAssociationDescription("T_RENDSZERBEALLITASTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FeladatEllatasiHely.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FeladatEllatasiHely", EntityUtil.GetAssociationDescription("T_FELADATELLATASIHELY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OldalLatogatottsag.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OldalLatogatottsag", EntityUtil.GetAssociationDescription("T_OLDALLATOGATOTTSAG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MulasztasStatisztikaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MulasztasStatisztikaTipus", EntityUtil.GetAssociationDescription("T_MULASZTASSTATISZTIKATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SystemSettingsControlType.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SystemSettingsControlType", EntityUtil.GetAssociationDescription("T_SYSTEMSETTINGSCONTROLTYPE_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MunkaugyiAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MunkaugyiAdatok", EntityUtil.GetAssociationDescription("T_MUNKAUGYIADATOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.RendszerErtesitesek.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "RendszerErtesitesek", EntityUtil.GetAssociationDescription("T_RENDSZERERTESITESEK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloKozossegiSzolgalat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloKozossegiSzolgalat", EntityUtil.GetAssociationDescription("T_TANULOKOZOSSEGISZOLGALAT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzerepkorTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzerepkorTipus", EntityUtil.GetAssociationDescription("T_SZEREPKORTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Jogosultsag.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Jogosultsag", EntityUtil.GetAssociationDescription("T_JOGOSULTSAG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentumok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IktatottDokumentumok", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUMOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.HelyettesitesiIdoszak.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HelyettesitesiIdoszak", EntityUtil.GetAssociationDescription("T_HELYETTESITESIIDOSZAK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.NaptariHet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NaptariHet", EntityUtil.GetAssociationDescription("T_NAPTARIHET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KretaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KretaTipus", EntityUtil.GetAssociationDescription("T_KRETATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.PedagogusStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "PedagogusStatusz", EntityUtil.GetAssociationDescription("T_PEDAGOGUSSTATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.BesorolasiFokozatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BesorolasiFokozatTipus", EntityUtil.GetAssociationDescription("T_BESOROLASIFOKOZATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MunkaidoKedvezmenyOka.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MunkaidoKedvezmenyOka", EntityUtil.GetAssociationDescription("T_MUNKAIDOKEDVEZMENYOKA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KirTelephely.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KirTelephely", EntityUtil.GetAssociationDescription("T_KIRTELEPHELY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.CsoportTipus_FoglalkozasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "CsoportTipus_FoglalkozasTipus", EntityUtil.GetAssociationDescription("T_CSOPORTTIPUS_FOGLALKOZASTIPU_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SorolasOkaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SorolasOkaTipus", EntityUtil.GetAssociationDescription("T_SOROLASOKATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FoglalkozasArchiv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FoglalkozasArchiv", EntityUtil.GetAssociationDescription("T_FOGLALKOZASARCHIV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ESLAdatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ESLAdatTipus", EntityUtil.GetAssociationDescription("T_ESLADATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloESLAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloESLAdatok", EntityUtil.GetAssociationDescription("T_TANULOESLADATOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ESLAdat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ESLAdat", EntityUtil.GetAssociationDescription("T_ESLADAT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.NemKotottMunkaido.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NemKotottMunkaido", EntityUtil.GetAssociationDescription("T_NEMKOTOTTMUNKAIDO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ENaploInfra.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ENaploInfra", EntityUtil.GetAssociationDescription("T_ENAPLOINFRA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.AdatszolgaltatasENaplo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AdatszolgaltatasENaplo", EntityUtil.GetAssociationDescription("T_ADATSZOLGALTATASENAPLO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ENaploForras.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ENaploForras", EntityUtil.GetAssociationDescription("T_ENAPLOFORRAS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ENaploTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ENaploTipus", EntityUtil.GetAssociationDescription("T_ENAPLOTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzerzodoSzemelyPozicio.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzerzodoSzemelyPozicio", EntityUtil.GetAssociationDescription("T_SZERZODOSZEMELYPOZICIO_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Forras.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Forras", EntityUtil.GetAssociationDescription("T_FORRAS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Prioritas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Prioritas", EntityUtil.GetAssociationDescription("T_PRIORITAS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.HibajegyStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HibajegyStatusz", EntityUtil.GetAssociationDescription("T_HIBAJEGYSTATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OsszegTullepesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OsszegTullepesTipus", EntityUtil.GetAssociationDescription("T_OSSZEGTULLEPESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Idokeret.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Idokeret", EntityUtil.GetAssociationDescription("T_IDOKERET_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FelvetelStatuszaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FelvetelStatuszaTipus", EntityUtil.GetAssociationDescription("T_FELVETELSTATUSZATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Nebulo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Nebulo", EntityUtil.GetAssociationDescription("T_NEBULO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TagozatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TagozatTipus", EntityUtil.GetAssociationDescription("T_TAGOZATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ENaploHasznalat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ENaploHasznalat", EntityUtil.GetAssociationDescription("T_ENAPLOHASZNALAT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.IKTKompetenciaSzint.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IKTKompetenciaSzint", EntityUtil.GetAssociationDescription("T_IKTKOMPETENCIASZINT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.WiFiEleres.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "WiFiEleres", EntityUtil.GetAssociationDescription("T_WIFIELERES_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.PedagogusIKTAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "PedagogusIKTAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_PEDAGOGUSIKTADATSZOLGALTATAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ElsodlegesIKTEszkoz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ElsodlegesIKTEszkoz", EntityUtil.GetAssociationDescription("T_ELSODLEGESIKTESZKOZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.IKTEszkozhasznalatMod.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IKTEszkozhasznalatMod", EntityUtil.GetAssociationDescription("T_IKTESZKOZHASZNALATMOD_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MukodesiHelyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MukodesiHelyTipus", EntityUtil.GetAssociationDescription("T_MUKODESIHELYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakkepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakkepesitesTipus", EntityUtil.GetAssociationDescription("T_SZAKKEPESITESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakmacsoportTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakmacsoportTipus", EntityUtil.GetAssociationDescription("T_SZAKMACSOPORTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.AgazatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AgazatTipus", EntityUtil.GetAssociationDescription("T_AGAZATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ReszszakkepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ReszszakkepesitesTipus", EntityUtil.GetAssociationDescription("T_RESZSZAKKEPESITESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TovabbiMunkaugyiAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TovabbiMunkaugyiAdatok", EntityUtil.GetAssociationDescription("T_TOVABBIMUNKAUGYIADATOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErettsegiTantargy.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErettsegiTantargy", EntityUtil.GetAssociationDescription("T_ERETTSEGITANTARGY_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErettsegiTantargyAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErettsegiTantargyAdatok", EntityUtil.GetAssociationDescription("T_ERETTSEGITANTARGYADATOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErettsegiEredmeny.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErettsegiEredmeny", EntityUtil.GetAssociationDescription("T_ERETTSEGIEREDMENY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErettsegiTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErettsegiTipus", EntityUtil.GetAssociationDescription("T_ERETTSEGITIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErettsegiSzint.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErettsegiSzint", EntityUtil.GetAssociationDescription("T_ERETTSEGISZINT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FoglalkoztatasTipusa.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FoglalkoztatasTipusa", EntityUtil.GetAssociationDescription("T_FOGLALKOZTATASTIPUSA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.VezetoiOraszamokTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "VezetoiOraszamokTipus", EntityUtil.GetAssociationDescription("T_VEZETOIORASZAMOKTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.IntezmenyEszkozAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IntezmenyEszkozAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_INTEZMENYESZKOZADATSZOLGALTA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MukodesiHelyAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MukodesiHelyAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_MUKODESIHELYADATSZOLGALTATAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KozossegiSzolgalatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KozossegiSzolgalatTipus", EntityUtil.GetAssociationDescription("T_KOZOSSEGISZOLGALATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesMondatbank.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesMondatbank", EntityUtil.GetAssociationDescription("T_ERTEKELESMONDATBANK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.NATKerdoiv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NATKerdoiv", EntityUtil.GetAssociationDescription("T_NATKERDOIV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanitasiOraTulajdonsag.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanitasiOraTulajdonsag", EntityUtil.GetAssociationDescription("T_TANITASIORATULAJDONSAG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OraTulajdonsagTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OraTulajdonsagTipus", EntityUtil.GetAssociationDescription("T_ORATULAJDONSAGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OrarendiOraTulajdonsag.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OrarendiOraTulajdonsag", EntityUtil.GetAssociationDescription("T_ORARENDIORATULAJDONSAG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloMulasztasLattamozas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloMulasztasLattamozas", EntityUtil.GetAssociationDescription("T_TANULOMULASZTASLATTAMOZAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloEsemenyLattamozas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloEsemenyLattamozas", EntityUtil.GetAssociationDescription("T_TANULOESEMENYLATTAMOZAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloErtekelesLattamozas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloErtekelesLattamozas", EntityUtil.GetAssociationDescription("T_TANULOERTEKELESLATTAMOZAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DictionaryType.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DictionaryType", EntityUtil.GetAssociationDescription("T_DICTIONARYTYPE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.eLearning.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "eLearning", EntityUtil.GetAssociationDescription("T_ELEARNING_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.VegzettsegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "VegzettsegTipus", EntityUtil.GetAssociationDescription("T_VEGZETTSEGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.HaziFeladatok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HaziFeladatok", EntityUtil.GetAssociationDescription("T_HAZIFELADATOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.HittanTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HittanTipus", EntityUtil.GetAssociationDescription("T_HITTANTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.HittanAdatszolgaltatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HittanAdatszolgaltatas", EntityUtil.GetAssociationDescription("T_HITTANADATSZOLGALTATAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.JelszoVisszaallitas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "JelszoVisszaallitas", EntityUtil.GetAssociationDescription("T_JELSZOVISSZAALLITAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KozmuSzamlaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KozmuSzamlaTipus", EntityUtil.GetAssociationDescription("T_KOZMUSZAMLATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Merohely.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Merohely", EntityUtil.GetAssociationDescription("T_MEROHELY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KozmuSzamla.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KozmuSzamla", EntityUtil.GetAssociationDescription("T_KOZMUSZAMLA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MerohelyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MerohelyTipus", EntityUtil.GetAssociationDescription("T_MEROHELYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Meroallas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Meroallas", EntityUtil.GetAssociationDescription("T_MEROALLAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.PenznemTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "PenznemTipus", EntityUtil.GetAssociationDescription("T_PENZNEMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Licence.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Licence", EntityUtil.GetAssociationDescription("T_LICENCE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.LicenceFunkciokTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "LicenceFunkciokTipus", EntityUtil.GetAssociationDescription("T_LICENCEFUNKCIOKTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErettsegiKerdes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErettsegiKerdes", EntityUtil.GetAssociationDescription("T_ERETTSEGIKERDES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErettsegiValasz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErettsegiValasz", EntityUtil.GetAssociationDescription("T_ERETTSEGIVALASZ_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloHaziFeladat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloHaziFeladat", EntityUtil.GetAssociationDescription("T_TANULOHAZIFELADAT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Vegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Vegzettseg", EntityUtil.GetAssociationDescription("T_VEGZETTSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Kepesites.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Kepesites", EntityUtil.GetAssociationDescription("T_KEPESITES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.GimnaziumiEvfolyamTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "GimnaziumiEvfolyamTipus", EntityUtil.GetAssociationDescription("T_GIMNAZIUMIEVFOLYAMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakTipus", EntityUtil.GetAssociationDescription("T_SZAKTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KirSzolgaltatasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KirSzolgaltatasTipus", EntityUtil.GetAssociationDescription("T_KIRSZOLGALTATASTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KIRKontenerElem.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KIRKontenerElem", EntityUtil.GetAssociationDescription("T_KIRKONTENERELEM_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KIRKontenerStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KIRKontenerStatusz", EntityUtil.GetAssociationDescription("T_KIRKONTENERSTATUSZ_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KIRKontener.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KIRKontener", EntityUtil.GetAssociationDescription("T_KIRKONTENER_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KIRKontenerElemStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KIRKontenerElemStatusz", EntityUtil.GetAssociationDescription("T_KIRKONTENERELEMSTATUSZ_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OsszefuggoSzakGyak.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OsszefuggoSzakGyak", EntityUtil.GetAssociationDescription("T_OSSZEFUGGOSZAKGYAK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMIZenemuvKatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMIZenemuvKatTipus", EntityUtil.GetAssociationDescription("T_KKAMIZENEMUVKATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKSzakTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKSzakTipus", EntityUtil.GetAssociationDescription("T_KKSZAKTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKKepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKKepesitesTipus", EntityUtil.GetAssociationDescription("T_KKKEPESITESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKGyogypedTerTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKGyogypedTerTipus", EntityUtil.GetAssociationDescription("T_KKGYOGYPEDTERTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMIKlasszikusTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMIKlasszikusTipus", EntityUtil.GetAssociationDescription("T_KKAMIKLASSZIKUSTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKTanitoMuvTerTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKTanitoMuvTerTipus", EntityUtil.GetAssociationDescription("T_KKTANITOMUVTERTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMIJazzZeneTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMIJazzZeneTipus", EntityUtil.GetAssociationDescription("T_KKAMIJAZZZENETIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMITeruletTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMITeruletTipus", EntityUtil.GetAssociationDescription("T_KKAMITERULETTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMIVegzettsegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMIVegzettsegTipus", EntityUtil.GetAssociationDescription("T_KKAMIVEGZETTSEGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMIElektroakuTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMIElektroakuTipus", EntityUtil.GetAssociationDescription("T_KKAMIELEKTROAKUTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMINepzeneTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMINepzeneTipus", EntityUtil.GetAssociationDescription("T_KKAMINEPZENETIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKVegzettsegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKVegzettsegTipus", EntityUtil.GetAssociationDescription("T_KKVEGZETTSEGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKTanitoVezgettseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKTanitoVezgettseg", EntityUtil.GetAssociationDescription("T_KKTANITOVEZGETTSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKTanarVegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKTanarVegzettseg", EntityUtil.GetAssociationDescription("T_KKTANARVEGZETTSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKTerulet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKTerulet", EntityUtil.GetAssociationDescription("T_KKTERULET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKElektroakuZene.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKElektroakuZene", EntityUtil.GetAssociationDescription("T_KKELEKTROAKUZENE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKNepzene.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKNepzene", EntityUtil.GetAssociationDescription("T_KKNEPZENE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKGyogypedVegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKGyogypedVegzettseg", EntityUtil.GetAssociationDescription("T_KKGYOGYPEDVEGZETTSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKAMIVegzettseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKAMIVegzettseg", EntityUtil.GetAssociationDescription("T_KKAMIVEGZETTSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKKlasszikusZene.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKKlasszikusZene", EntityUtil.GetAssociationDescription("T_KKKLASSZIKUSZENE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKJazzZene.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKJazzZene", EntityUtil.GetAssociationDescription("T_KKJAZZZENE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKKepesitesJellTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKKepesitesJellTipus", EntityUtil.GetAssociationDescription("T_KKKEPESITESJELLTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KKTantargyKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KKTantargyKategoria", EntityUtil.GetAssociationDescription("T_KKTANTARGYKATEGORIA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtMondatbankTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtMondatbankTipus", EntityUtil.GetAssociationDescription("T_ERTMONDATBANKTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Diakolimpia.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Diakolimpia", EntityUtil.GetAssociationDescription("T_DIAKOLIMPIA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.JelszoModositasLink.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "JelszoModositasLink", EntityUtil.GetAssociationDescription("T_JELSZOMODOSITASLINK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DokumentumKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DokumentumKategoria", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKATEGORIA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DokumentumKulcsszoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DokumentumKulcsszoTipus", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKULCSSZOTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DokumentumStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DokumentumStatusz", EntityUtil.GetAssociationDescription("T_DOKUMENTUMSTATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DokumentumTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DokumentumTipus", EntityUtil.GetAssociationDescription("T_DOKUMENTUMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DokumentumKulcsszo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DokumentumKulcsszo", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKULCSSZO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentum.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IktatottDokumentum", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUM_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DokumentumKulcsszoErtek.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DokumentumKulcsszoErtek", EntityUtil.GetAssociationDescription("T_DOKUMENTUMKULCSSZOERTEK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Dokumentum.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Dokumentum", EntityUtil.GetAssociationDescription("T_DOKUMENTUM_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OktNevelesiKategoria.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OktNevelesiKategoria", EntityUtil.GetAssociationDescription("T_OKTNEVELESIKATEGORIA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ElearningElerhetoseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ElearningElerhetoseg", EntityUtil.GetAssociationDescription("T_ELEARNINGELERHETOSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Fogadoora.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Fogadoora", EntityUtil.GetAssociationDescription("T_FOGADOORA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.FogadooraIdopont.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FogadooraIdopont", EntityUtil.GetAssociationDescription("T_FOGADOORAIDOPONT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Fogadoora_OsztalyCsoport.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Fogadoora_OsztalyCsoport", EntityUtil.GetAssociationDescription("T_FOGADOORA_OSZTALYCSOPORT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.FogadooraIdopont_Gondviselo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FogadooraIdopont_Gondviselo", EntityUtil.GetAssociationDescription("T_FOGADOORAIDOPONT_GONDVISELO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DokumentumElemiSzint.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DokumentumElemiSzint", EntityUtil.GetAssociationDescription("T_DOKUMENTUMELEMISZINT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Kurzus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Kurzus", EntityUtil.GetAssociationDescription("T_KURZUS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ElvegzettKurzus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ElvegzettKurzus", EntityUtil.GetAssociationDescription("T_ELVEGZETTKURZUS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloTanugyiAdatok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloTanugyiAdatok", EntityUtil.GetAssociationDescription("T_TANULOTANUGYIADATOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TeremElerhetoseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TeremElerhetoseg", EntityUtil.GetAssociationDescription("T_TEREMELERHETOSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TavolletStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TavolletStatusz", EntityUtil.GetAssociationDescription("T_TAVOLLETSTATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TavolletTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TavolletTipus", EntityUtil.GetAssociationDescription("T_TAVOLLETTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ESLTantargykategoria.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ESLTantargykategoria", EntityUtil.GetAssociationDescription("T_ESLTANTARGYKATEGORIA_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TavolletJelento.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TavolletJelento", EntityUtil.GetAssociationDescription("T_TAVOLLETJELENTO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.FeltoltottFajl.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FeltoltottFajl", EntityUtil.GetAssociationDescription("T_FELTOLTOTTFAJL_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ZenemuveszetiAgTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ZenemuveszetiAgTipus", EntityUtil.GetAssociationDescription("T_ZENEMUVESZETIAGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MuveszetiAg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MuveszetiAg", EntityUtil.GetAssociationDescription("T_MUVESZETIAG_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SAPTavollet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SAPTavollet", EntityUtil.GetAssociationDescription("T_SAPTAVOLLET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzamonkeresElorejelzes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzamonkeresElorejelzes", EntityUtil.GetAssociationDescription("T_SZAMONKERESELOREJELZES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EugyintezesLog.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EugyintezesLog", EntityUtil.GetAssociationDescription("T_EUGYINTEZESLOG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.AMITagozat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AMITagozat", EntityUtil.GetAssociationDescription("T_AMITAGOZAT_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.AMITantargyKotelezoseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AMITantargyKotelezoseg", EntityUtil.GetAssociationDescription("T_AMITANTARGYKOTELEZOSEG_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.AMIFotargy.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AMIFotargy", EntityUtil.GetAssociationDescription("T_AMIFOTARGY_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FoglalkozasAmiTanulo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FoglalkozasAmiTanulo", EntityUtil.GetAssociationDescription("T_FOGLALKOZASAMITANULO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ElearningFelhasznalo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ElearningFelhasznalo", EntityUtil.GetAssociationDescription("T_ELEARNINGFELHASZNALO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Terem_FeltoltottFajl.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Terem_FeltoltottFajl", EntityUtil.GetAssociationDescription("T_TEREM_FELTOLTOTTFAJL_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DashboardUzenetFelhasznalo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DashboardUzenetFelhasznalo", EntityUtil.GetAssociationDescription("T_DASHBOARDUZENETFELHASZNALO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MennyisegiEgyseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MennyisegiEgyseg", EntityUtil.GetAssociationDescription("T_MENNYISEGIEGYSEG_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgenySatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiIgenySatusz", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENYSATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiSzallito.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiSzallito", EntityUtil.GetAssociationDescription("T_BESZERZESISZALLITO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiAnyagtorzs.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiAnyagtorzs", EntityUtil.GetAssociationDescription("T_BESZERZESIANYAGTORZS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgenyDokumentum.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiIgenyDokumentum", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENYDOKUMENTUM_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiAnyag.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiAnyag", EntityUtil.GetAssociationDescription("T_BESZERZESIANYAG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiSzallitotorzs.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiSzallitotorzs", EntityUtil.GetAssociationDescription("T_BESZERZESISZALLITOTORZS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgeny.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiIgeny", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.BeszerzesiIgenyMegjegyzes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BeszerzesiIgenyMegjegyzes", EntityUtil.GetAssociationDescription("T_BESZERZESIIGENYMEGJEGYZES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Hetes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Hetes", EntityUtil.GetAssociationDescription("T_HETES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SniTanuloNevelesiFormaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SniTanuloNevelesiFormaTipus", EntityUtil.GetAssociationDescription("T_SNITANULONEVELESIFORMATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.LepEloadasJegyzek.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "LepEloadasJegyzek", EntityUtil.GetAssociationDescription("T_LEPELOADASJEGYZEK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.AdattisztitasStatisztika.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AdattisztitasStatisztika", EntityUtil.GetAssociationDescription("T_ADATTISZTITASSTATISZTIKA_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.AranyJanosProgramTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AranyJanosProgramTipus", EntityUtil.GetAssociationDescription("T_ARANYJANOSPROGRAMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.LepEloadas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "LepEloadas", EntityUtil.GetAssociationDescription("T_LEPELOADAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TantargyNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TantargyNyelv", EntityUtil.GetAssociationDescription("T_TANTARGYNYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OraSorszamozasHalmazOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OraSorszamozasHalmazOsszerendeles", EntityUtil.GetAssociationDescription("T_ORASORSZAMOZASHALMAZOSSZEREN_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OraSorszamozasHalmaz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OraSorszamozasHalmaz", EntityUtil.GetAssociationDescription("T_ORASORSZAMOZASHALMAZ_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloEsemenyNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloEsemenyNyelv", EntityUtil.GetAssociationDescription("T_TANULOESEMENYNYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DictionaryItemBaseNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DictionaryItemBaseNyelv", EntityUtil.GetAssociationDescription("T_DICTIONARYITEMBASENYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesMondatbankNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesMondatbankNyelv", EntityUtil.GetAssociationDescription("T_ERTEKELESMONDATBANKNYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloErtekelesNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloErtekelesNyelv", EntityUtil.GetAssociationDescription("T_TANULOERTEKELESNYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloKozossegiSzolgalatNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloKozossegiSzolgalatNyelv", EntityUtil.GetAssociationDescription("T_TANULOKOZOSSEGISZOLGALATNYEL_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentumTavollet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IktatottDokumentumTavollet", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUMTAVOLLET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloHaziFeladatStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloHaziFeladatStatusz", EntityUtil.GetAssociationDescription("T_TANULOHAZIFELADATSTATUSZ_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Csatolmany.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Csatolmany", EntityUtil.GetAssociationDescription("T_CSATOLMANY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanterviJellemzoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanterviJellemzoTipus", EntityUtil.GetAssociationDescription("T_TANTERVIJELLEMZOTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.HaziFeladatCsatolmany.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "HaziFeladatCsatolmany", EntityUtil.GetAssociationDescription("T_HAZIFELADATCSATOLMANY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.AmiJellemzoTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AmiJellemzoTipus", EntityUtil.GetAssociationDescription("T_AMIJELLEMZOTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.BankszamlaTulajdonosTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "BankszamlaTulajdonosTipus", EntityUtil.GetAssociationDescription("T_BANKSZAMLATULAJDONOSTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.JogviszonyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "JogviszonyTipus", EntityUtil.GetAssociationDescription("T_JOGVISZONYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.JuttatasTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "JuttatasTipus", EntityUtil.GetAssociationDescription("T_JUTTATASTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Juttatas.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Juttatas", EntityUtil.GetAssociationDescription("T_JUTTATAS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloTantargyAtlag.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloTantargyAtlag", EntityUtil.GetAssociationDescription("T_TANULOTANTARGYATLAG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakmairanyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakmairanyTipus", EntityUtil.GetAssociationDescription("T_SZAKMAIRANYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanuloSni.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanuloSni", EntityUtil.GetAssociationDescription("T_TANULOSNI_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakmaTipus", EntityUtil.GetAssociationDescription("T_SZAKMATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.AgazatUjSzktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AgazatUjSzktTipus", EntityUtil.GetAssociationDescription("T_AGAZATUJSZKTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Tovabbkepzes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Tovabbkepzes", EntityUtil.GetAssociationDescription("T_TOVABBKEPZES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EgyebTevekenysegekTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EgyebTevekenysegekTipus", EntityUtil.GetAssociationDescription("T_EGYEBTEVEKENYSEGEKTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MunkaugyTorvenyiHatalyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MunkaugyTorvenyiHatalyTipus", EntityUtil.GetAssociationDescription("T_MUNKAUGYTORVENYIHATALYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DKT_Feladat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DKT_Feladat", EntityUtil.GetAssociationDescription("T_DKT_FELADAT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DKT_FeladatFile.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DKT_FeladatFile", EntityUtil.GetAssociationDescription("T_DKT_FELADATFILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DKT_File.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DKT_File", EntityUtil.GetAssociationDescription("T_DKT_FILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.AlkalmazottMunkaKorTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AlkalmazottMunkaKorTipus", EntityUtil.GetAssociationDescription("T_ALKALMAZOTTMUNKAKORTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.EgyHaztartasbanElok.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EgyHaztartasbanElok", EntityUtil.GetAssociationDescription("T_EGYHAZTARTASBANELOK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzirStatFile.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzirStatFile", EntityUtil.GetAssociationDescription("T_SZIRSTATFILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.JogviszonySzuneteltetes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "JogviszonySzuneteltetes", EntityUtil.GetAssociationDescription("T_JOGVISZONYSZUNETELTETES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.File.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "File", EntityUtil.GetAssociationDescription("T_FILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.KirSzirFeladatellatasiHely.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KirSzirFeladatellatasiHely", EntityUtil.GetAssociationDescription("T_KIRSZIRFELADATELLATASIHELY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzirStatTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzirStatTipus", EntityUtil.GetAssociationDescription("T_SZIRSTATTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OraFile.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OraFile", EntityUtil.GetAssociationDescription("T_ORAFILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ZaradekNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ZaradekNyelv", EntityUtil.GetAssociationDescription("T_ZARADEKNYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.OraFileTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OraFileTipus", EntityUtil.GetAssociationDescription("T_ORAFILETIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.Zaradek.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Zaradek", EntityUtil.GetAssociationDescription("T_ZARADEK_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ProfilkepFile.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ProfilkepFile", EntityUtil.GetAssociationDescription("T_PROFILKEPFILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakiranyNktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakiranyNktTipus", EntityUtil.GetAssociationDescription("T_SZAKIRANYNKTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TulajdonTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TulajdonTipus", EntityUtil.GetAssociationDescription("T_TULAJDONTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanulmanyiTeruletNktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanulmanyiTeruletNktTipus", EntityUtil.GetAssociationDescription("T_TANULMANYITERULETNKTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakkepesitesNktTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakkepesitesNktTipus", EntityUtil.GetAssociationDescription("T_SZAKKEPESITESNKTTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DigEszkozTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DigEszkozTipus", EntityUtil.GetAssociationDescription("T_DIGESZKOZTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DigPlatformTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DigPlatformTipus", EntityUtil.GetAssociationDescription("T_DIGPLATFORMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.DigTamEszkozTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DigTamEszkozTipus", EntityUtil.GetAssociationDescription("T_DIGTAMESZKOZTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanitasiOraDigTamEszkoz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanitasiOraDigTamEszkoz", EntityUtil.GetAssociationDescription("T_TANITASIORADIGTAMESZKOZ_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.IktatottDokumentumCsatolmany.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "IktatottDokumentumCsatolmany", EntityUtil.GetAssociationDescription("T_IKTATOTTDOKUMENTUMCSATOLMANY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EpjTanuloiAdat.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EpjTanuloiAdat", EntityUtil.GetAssociationDescription("T_EPJTANULOIADAT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DualisSzerzodesFile.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DualisSzerzodesFile", EntityUtil.GetAssociationDescription("T_DUALISSZERZODESFILE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.MufajTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MufajTipus", EntityUtil.GetAssociationDescription("T_MUFAJTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanszakTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanszakTipus", EntityUtil.GetAssociationDescription("T_TANSZAKTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.NemzetisegTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NemzetisegTipus", EntityUtil.GetAssociationDescription("T_NEMZETISEGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.FelekezetTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FelekezetTipus", EntityUtil.GetAssociationDescription("T_FELEKEZETTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TKJogalapTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TKJogalapTipus", EntityUtil.GetAssociationDescription("T_TKJOGALAPTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TartozkodasJogcimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TartozkodasJogcimTipus", EntityUtil.GetAssociationDescription("T_TARTOZKODASJOGCIMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TartJogOkmanyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TartJogOkmanyTipus", EntityUtil.GetAssociationDescription("T_TARTJOGOKMANYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.KepesitesTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "KepesitesTipus", EntityUtil.GetAssociationDescription("T_KEPESITESTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzirStatTanulo.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzirStatTanulo", EntityUtil.GetAssociationDescription("T_SZIRSTATTANULO_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzirStatFeladatellatasiHely.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzirStatFeladatellatasiHely", EntityUtil.GetAssociationDescription("T_SZIRSTATFELADATELLATASIHELY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.FogyatekossagTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "FogyatekossagTipus", EntityUtil.GetAssociationDescription("T_FOGYATEKOSSAGTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.OgOrarend.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "OgOrarend", EntityUtil.GetAssociationDescription("T_OGORAREND_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzirStatKonyvtar.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzirStatKonyvtar", EntityUtil.GetAssociationDescription("T_SZIRSTATKONYVTAR_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EszkozIgenyles.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EszkozIgenyles", EntityUtil.GetAssociationDescription("T_ESZKOZIGENYLES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakmaReszSzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakmaReszSzakmaTipus", EntityUtil.GetAssociationDescription("T_SZAKMARESZSZAKMATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.AgazatReszSzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AgazatReszSzakmaTipus", EntityUtil.GetAssociationDescription("T_AGAZATRESZSZAKMATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ReszSzakmaTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ReszSzakmaTipus", EntityUtil.GetAssociationDescription("T_RESZSZAKMATIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.MunkaSzerzodes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "MunkaSzerzodes", EntityUtil.GetAssociationDescription("T_MUNKASZERZODES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.EszkozIgenylesStatusz.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "EszkozIgenylesStatusz", EntityUtil.GetAssociationDescription("T_ESZKOZIGENYLESSTATUSZ_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.JogvMegszuneseJogcimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "JogvMegszuneseJogcimTipus", EntityUtil.GetAssociationDescription("T_JOGVMEGSZUNESEJOGCIMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TbJogviszonyTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TbJogviszonyTipus", EntityUtil.GetAssociationDescription("T_TBJOGVISZONYTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TbJogviszony.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TbJogviszony", EntityUtil.GetAssociationDescription("T_TBJOGVISZONY_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.AgazatAlapOktMegnevTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AgazatAlapOktMegnevTipus", EntityUtil.GetAssociationDescription("T_AGAZATALAPOKTMEGNEVTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.JogvKeletkezeseJogcimTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "JogvKeletkezeseJogcimTipus", EntityUtil.GetAssociationDescription("T_JOGVKELETKEZESEJOGCIMTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.AgazatAlapVizsgaEredTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "AgazatAlapVizsgaEredTipus", EntityUtil.GetAssociationDescription("T_AGAZATALAPVIZSGAEREDTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesTantargyi.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesTantargyi", EntityUtil.GetAssociationDescription("T_ERTEKELESTANTARGYI_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesMagSzorNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesMagSzorNyelv", EntityUtil.GetAssociationDescription("T_ERTEKELESMAGSZORNYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesMagSzor.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesMagSzor", EntityUtil.GetAssociationDescription("T_ERTEKELESMAGSZOR_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ErtekelesTantargyiNyelv.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ErtekelesTantargyiNyelv", EntityUtil.GetAssociationDescription("T_ERTEKELESTANTARGYINYELV_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.Szervezet.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "Szervezet", EntityUtil.GetAssociationDescription("T_SZERVEZET_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.UjSzktSzakmajegyzekOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "UjSzktSzakmajegyzekOsszerendeles", EntityUtil.GetAssociationDescription("T_UJSZKTSZAKMAJEGYZEKOSSZEREND_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.NktOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NktOsszerendeles", EntityUtil.GetAssociationDescription("T_NKTOSSZERENDELES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.RegiSzktOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "RegiSzktOsszerendeles", EntityUtil.GetAssociationDescription("T_REGISZKTOSSZERENDELES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.UjSzktReszszakmaOsszerendeles.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "UjSzktReszszakmaOsszerendeles", EntityUtil.GetAssociationDescription("T_UJSZKTRESZSZAKMAOSSZERENDELE_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.DualisHelyszinTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "DualisHelyszinTipus", EntityUtil.GetAssociationDescription("T_DUALISHELYSZINTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzirStatNemAllamiOktKolts.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzirStatNemAllamiOktKolts", EntityUtil.GetAssociationDescription("T_SZIRSTATNEMALLAMIOKTKOLTS_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.ApaczaiKgrJogosult.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "ApaczaiKgrJogosult", EntityUtil.GetAssociationDescription("T_APACZAIKGRJOGOSULT_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.SzakmunkaSzerzodes.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "SzakmunkaSzerzodes", EntityUtil.GetAssociationDescription("T_SZAKMUNKASZERZODES_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
if (this.NyugdijTipus.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "NyugdijTipus", EntityUtil.GetAssociationDescription("T_NYUGDIJTIPUS_OSSZES", "C_ALINTEZMENYID")); // nincs kapcsolotabla
}
if (this.TanulasiEgyseg.Count > 0)
{
throw new EntityDeleteFailedException("Intezmeny", "TanulasiEgyseg", EntityUtil.GetAssociationDescription("T_TANULASIEGYSEG_OSSZES", "C_INTEZMENYID")); // nincs kapcsolotabla
}
// kaszkád törlések...
}
#region Mezők és tulajdonságok
#region Egyszerű mezők
#region Azonosito
protected internal string m_Azonosito;
///
/// Egyedi azonisító, ez szerepel az URL-ben is
///
[EntityProperty("Azonosito", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string Azonosito
{
get
{
return m_Azonosito;
}
set
{
CheckModifyable();
if (m_Azonosito == value) return;
m_Azonosito = value;
FieldModified("Azonosito", value);
}
}
#endregion
#region FenntartoAzonosito
protected internal string m_FenntartoAzonosito;
///
/// A fenntartó 3 számjegyu azonosítója
///
[EntityProperty("FenntartoAzonosito", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string FenntartoAzonosito
{
get
{
return m_FenntartoAzonosito;
}
set
{
CheckModifyable();
if (m_FenntartoAzonosito == value) return;
m_FenntartoAzonosito = value;
FieldModified("FenntartoAzonosito", value);
}
}
#endregion
#region NeptunNaploLink
protected internal string m_NeptunNaploLink;
///
/// Régi, neptun naplós URL
///
[EntityProperty("NeptunNaploLink", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string NeptunNaploLink
{
get
{
return m_NeptunNaploLink;
}
set
{
CheckModifyable();
if (m_NeptunNaploLink == value) return;
m_NeptunNaploLink = value;
FieldModified("NeptunNaploLink", value);
}
}
#endregion
#region PoszeidonBejelentkezesiNev
protected internal string m_PoszeidonBejelentkezesiNev;
///
/// A Poseidonban történo bejelentkezéshez a felhasználónév
///
[EntityProperty("PoszeidonBejelentkezesiNev", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string PoszeidonBejelentkezesiNev
{
get
{
return m_PoszeidonBejelentkezesiNev;
}
set
{
CheckModifyable();
if (m_PoszeidonBejelentkezesiNev == value) return;
m_PoszeidonBejelentkezesiNev = value;
FieldModified("PoszeidonBejelentkezesiNev", value);
}
}
#endregion
#region AlternativAzonosito
protected internal string m_AlternativAzonosito;
///
/// Az alternatív URL-ben ez szerepel
///
[EntityProperty("AlternativAzonosito", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string AlternativAzonosito
{
get
{
return m_AlternativAzonosito;
}
set
{
CheckModifyable();
if (m_AlternativAzonosito == value) return;
m_AlternativAzonosito = value;
FieldModified("AlternativAzonosito", value);
}
}
#endregion
#region FenntartoEmailCim
protected internal string m_FenntartoEmailCim;
///
/// Az intézmény fenntartójának email címe
///
[EntityProperty("FenntartoEmailCim", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string FenntartoEmailCim
{
get
{
return m_FenntartoEmailCim;
}
set
{
CheckModifyable();
if (m_FenntartoEmailCim == value) return;
m_FenntartoEmailCim = value;
FieldModified("FenntartoEmailCim", value);
}
}
#endregion
#region IktatoSzervezetAzonosito
protected internal string m_IktatoSzervezetAzonosito;
///
/// A Poseidonban ilyen néven szerepel az iskola a szervezetek között
///
[EntityProperty("IktatoSzervezetAzonosito", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string IktatoSzervezetAzonosito
{
get
{
return m_IktatoSzervezetAzonosito;
}
set
{
CheckModifyable();
if (m_IktatoSzervezetAzonosito == value) return;
m_IktatoSzervezetAzonosito = value;
FieldModified("IktatoSzervezetAzonosito", value);
}
}
#endregion
#region NexiusId
protected internal string m_NexiusId;
///
/// nexius e-learning rendszerben ez az id-ja az adott kréta rendszernek
///
[EntityProperty("NexiusId", EntityPropertyBaseType.ValueType, typeof(string), EntityCopyMethod.ShallowCopy)]
public virtual string NexiusId
{
get
{
return m_NexiusId;
}
set
{
CheckModifyable();
if (m_NexiusId == value) return;
m_NexiusId = value;
FieldModified("NexiusId", value);
}
}
#endregion
#region Guid
protected internal Guid? m_Guid;
///
/// Nincs definiálva megjegyzés.
///
[EntityProperty("Guid", EntityPropertyBaseType.ValueType, typeof(Guid), EntityCopyMethod.ShallowCopy)]
public virtual Guid? Guid
{
get
{
return m_Guid;
}
set
{
CheckModifyable();
if (m_Guid == value) return;
m_Guid = value;
FieldModified("Guid", value);
}
}
#endregion
#region IsArchiv
protected internal bool m_IsArchiv;
///
/// Nincs definiálva megjegyzés.
///
[EntityProperty("IsArchiv", EntityPropertyBaseType.ValueType, typeof(bool), EntityCopyMethod.ShallowCopy)]
public virtual bool IsArchiv
{
get
{
return m_IsArchiv;
}
set
{
CheckModifyable();
if (m_IsArchiv == value) return;
m_IsArchiv = value;
FieldModified("IsArchiv", value);
}
}
#endregion
#endregion
#region Asszociációkkal kapcsolatos dolgok
protected internal virtual bool LoadByIntezmenyAdatokId(int id)
{
return m_DA.LoadByIntezmenyAdatokId(id, this);
}
protected internal virtual bool LoadByTanevId(int id)
{
return m_DA.LoadByTanevId(id, this);
}
protected internal virtual bool LoadByIntezmenyAdatszolgaltatasId(int id)
{
return m_DA.LoadByIntezmenyAdatszolgaltatasId(id, this);
}
protected internal virtual bool LoadByDashboardUzenetIntezmenyId(int id)
{
return m_DA.LoadByDashboardUzenetIntezmenyId(id, this);
}
protected internal virtual bool LoadByIntezmenyConfigId(int id)
{
return m_DA.LoadByIntezmenyConfigId(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 Intezmeny (*) -> Fenntarto (1)
protected internal int m_FenntartoId = -1;
///
/// A(z) Fenntarto 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 FenntartoId
{
get
{
return InternalFenntartoId;
}
set
{
InternalFenntartoId = value;
}
}
///
/// Ez egy külön bejárat a DA számára
///
internal int InternalFenntartoId
{
get
{
if (m_Fenntarto != null)
{
return m_Fenntarto.ID;
}
else
{
return m_FenntartoId;// XXX az meg nem teljesen OK
}
}
set
{
CheckModifyable();
if (m_FenntartoId != value)
{
m_FenntartoId = value;
m_Fenntarto = null;
FieldModified("FenntartoId", value);
}
}
}
///
/// Ez egy külön bejárat a DA számára
///
internal void ModifyFenntarto(Fenntarto value)
{
m_FenntartoId = value != null ? value.ID : -1;
m_Fenntarto = value;
FieldModified("FenntartoId", value != null ? (object)value.ID : DBNull.Value);
}
protected internal void SetFenntarto(Fenntarto value)
{
m_Fenntarto = value;
if (value != null)
{
m_FenntartoId = value.ID;
}
else
{
m_FenntartoId = -1;
}
}
protected Fenntarto m_Fenntarto = null;
IFenntarto IIntezmeny.Fenntarto
{
get { return Fenntarto; }
set { Fenntarto = value as Fenntarto; }
}
///
/// Intézmény fenntartója
///
///
/// Az UML modellben szereplő Intezmeny és Fenntarto entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Fenntarto", EntityPropertyBaseType.Entity, typeof(Fenntarto), EntityCopyMethod.ShallowCopy)]
public virtual Fenntarto Fenntarto
{
get
{
if ((m_Fenntarto == null) && (m_FenntartoId != -1))
{
SDA.Kreta.Entities.Fenntarto partner = SDA.Kreta.Entities.Fenntarto.GiveAnInstance();
partner.LoadByID(m_FenntartoId);
this.SetFenntarto(partner);
}
// természetesen null-t adunk vissza, ha nem tudtunk felhozni semmit
return m_Fenntarto;
}
set
{
CheckModifyable();
if (value != null)
{
if ((m_Fenntarto == null) || (value.ID != m_Fenntarto.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.Fenntarto_Intezmeny_DA da = new Fenntarto_Intezmeny_DA(value);
da.AddItem(this);
this.SetFenntarto(value);
}
else
{
this.SetFenntarto(value);
}
FieldModified("FenntartoId", value.ID);
}
}
else
{
// ki kell törölni a kapcsolatot az adatbázisban
this.SetFenntarto(null);
UpdateAssociations();
FieldModified("FenntartoId", DBNull.Value);
}
}
}
#endregion
#region Intezmeny (1) -> IntezmenyAdatok (*)
protected IAssociatedEntityCollection m_IntezmenyAdatok = null;
IReadOnlyList IIntezmeny.IntezmenyAdatok => IntezmenyAdatok.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és IntezmenyAdatok entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IntezmenyAdatok", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection IntezmenyAdatok
{
get
{
if (m_IntezmenyAdatok == null)
{
m_IntezmenyAdatok = new AssociatedEntityCollection(
new Intezmeny_IntezmenyAdatok_DA(this)
);
m_IntezmenyAdatok.Load();
}
return m_IntezmenyAdatok;
}
}
#endregion
#region Intezmeny (1) -> Tanev (*)
protected IAssociatedEntityCollection m_Tanev = null;
IReadOnlyList IIntezmeny.Tanev => Tanev.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Tanev entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Tanev", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Tanev
{
get
{
if (m_Tanev == null)
{
m_Tanev = new AssociatedEntityCollection(
new Intezmeny_Tanev_DA(this)
);
m_Tanev.Load();
}
return m_Tanev;
}
}
#endregion
#region Intezmeny (1) -> IntezmenyAdatszolgaltatas (*)
protected IAssociatedEntityCollection m_IntezmenyAdatszolgaltatas = null;
IReadOnlyList IIntezmeny.IntezmenyAdatszolgaltatas => IntezmenyAdatszolgaltatas.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és IntezmenyAdatszolgaltatas entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IntezmenyAdatszolgaltatas", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection IntezmenyAdatszolgaltatas
{
get
{
if (m_IntezmenyAdatszolgaltatas == null)
{
m_IntezmenyAdatszolgaltatas = new AssociatedEntityCollection(
new Intezmeny_IntezmenyAdatszolgaltatas_DA(this)
);
m_IntezmenyAdatszolgaltatas.Load();
}
return m_IntezmenyAdatszolgaltatas;
}
}
#endregion
#region Intezmeny (1) -> DashboardUzenetIntezmeny (*)
protected IAssociatedEntityCollection m_DashboardUzenetIntezmeny = null;
IReadOnlyList IIntezmeny.DashboardUzenetIntezmeny => DashboardUzenetIntezmeny.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és DashboardUzenetIntezmeny entitások közötti asszociáció megvalósítása.
///
[EntityProperty("DashboardUzenetIntezmeny", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection DashboardUzenetIntezmeny
{
get
{
if (m_DashboardUzenetIntezmeny == null)
{
m_DashboardUzenetIntezmeny = new AssociatedEntityCollection(
new Intezmeny_DashboardUzenetIntezmeny_DA(this)
);
m_DashboardUzenetIntezmeny.Load();
}
return m_DashboardUzenetIntezmeny;
}
}
#endregion
#region Intezmeny (1) -> IntezmenyConfig (*)
protected IAssociatedEntityCollection m_IntezmenyConfig = null;
IReadOnlyList IIntezmeny.IntezmenyConfig => IntezmenyConfig.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és IntezmenyConfig entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IntezmenyConfig", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection IntezmenyConfig
{
get
{
if (m_IntezmenyConfig == null)
{
m_IntezmenyConfig = new AssociatedEntityCollection(
new Intezmeny_IntezmenyConfig_DA(this)
);
m_IntezmenyConfig.Load();
}
return m_IntezmenyConfig;
}
}
#endregion
#region Intezmeny (1) -> Felhasznalo (*)
protected IAssociatedEntityCollection m_Felhasznalo = null;
IReadOnlyList IIntezmeny.Felhasznalo => Felhasznalo.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Felhasznalo entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Felhasznalo", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Felhasznalo
{
get
{
if (m_Felhasznalo == null)
{
m_Felhasznalo = new AssociatedEntityCollection(
new Intezmeny_Felhasznalo_DA(this)
);
m_Felhasznalo.Load();
}
return m_Felhasznalo;
}
}
#endregion
#region Intezmeny (1) -> Email (*)
protected IAssociatedEntityCollection m_Email = null;
IReadOnlyList IIntezmeny.Email => Email.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Email entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Email", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Email
{
get
{
if (m_Email == null)
{
m_Email = new AssociatedEntityCollection(
new Intezmeny_Email_DA(this)
);
m_Email.Load();
}
return m_Email;
}
}
#endregion
#region Intezmeny (1) -> Cim (*)
protected IAssociatedEntityCollection m_Cim = null;
IReadOnlyList IIntezmeny.Cim => Cim.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Cim entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Cim", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Cim
{
get
{
if (m_Cim == null)
{
m_Cim = new AssociatedEntityCollection(
new Intezmeny_Cim_DA(this)
);
m_Cim.Load();
}
return m_Cim;
}
}
#endregion
#region Intezmeny (1) -> Szerepkor (*)
protected IAssociatedEntityCollection m_Szerepkor = null;
IReadOnlyList IIntezmeny.Szerepkor => Szerepkor.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Szerepkor entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Szerepkor", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Szerepkor
{
get
{
if (m_Szerepkor == null)
{
m_Szerepkor = new AssociatedEntityCollection(
new Intezmeny_Szerepkor_DA(this)
);
m_Szerepkor.Load();
}
return m_Szerepkor;
}
}
#endregion
#region Intezmeny (1) -> Telefon (*)
protected IAssociatedEntityCollection m_Telefon = null;
IReadOnlyList IIntezmeny.Telefon => Telefon.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Telefon entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Telefon", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Telefon
{
get
{
if (m_Telefon == null)
{
m_Telefon = new AssociatedEntityCollection(
new Intezmeny_Telefon_DA(this)
);
m_Telefon.Load();
}
return m_Telefon;
}
}
#endregion
#region Intezmeny (1) -> DictionaryItemBase (*)
protected IAssociatedEntityCollection m_DictionaryItemBase = null;
IReadOnlyList IIntezmeny.DictionaryItemBase => DictionaryItemBase.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és DictionaryItemBase entitások közötti asszociáció megvalósítása.
///
[EntityProperty("DictionaryItemBase", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection DictionaryItemBase
{
get
{
if (m_DictionaryItemBase == null)
{
m_DictionaryItemBase = new AssociatedEntityCollection(
new Intezmeny_DictionaryItemBase_DA(this)
);
m_DictionaryItemBase.Load();
}
return m_DictionaryItemBase;
}
}
#endregion
#region Intezmeny (1) -> Nem (*)
protected IAssociatedEntityCollection m_Nem = null;
IReadOnlyList IIntezmeny.Nem => Nem.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Nem entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Nem", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection Nem
{
get
{
if (m_Nem == null)
{
m_Nem = new AssociatedEntityCollection(
new Intezmeny_Nem_DA(this)
);
m_Nem.Load();
}
return m_Nem;
}
}
#endregion
#region Intezmeny (1) -> CimTipus (*)
protected IAssociatedEntityCollection m_CimTipus = null;
IReadOnlyList IIntezmeny.CimTipus => CimTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és CimTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("CimTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection CimTipus
{
get
{
if (m_CimTipus == null)
{
m_CimTipus = new AssociatedEntityCollection(
new Intezmeny_CimTipus_DA(this)
);
m_CimTipus.Load();
}
return m_CimTipus;
}
}
#endregion
#region Intezmeny (1) -> Allampolgarsag (*)
protected IAssociatedEntityCollection m_Allampolgarsag = null;
IReadOnlyList IIntezmeny.Allampolgarsag => Allampolgarsag.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Allampolgarsag entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Allampolgarsag", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection Allampolgarsag
{
get
{
if (m_Allampolgarsag == null)
{
m_Allampolgarsag = new AssociatedEntityCollection(
new Intezmeny_Allampolgarsag_DA(this)
);
m_Allampolgarsag.Load();
}
return m_Allampolgarsag;
}
}
#endregion
#region Intezmeny (1) -> TelefonTipus (*)
protected IAssociatedEntityCollection m_TelefonTipus = null;
IReadOnlyList IIntezmeny.TelefonTipus => TelefonTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és TelefonTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("TelefonTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection TelefonTipus
{
get
{
if (m_TelefonTipus == null)
{
m_TelefonTipus = new AssociatedEntityCollection(
new Intezmeny_TelefonTipus_DA(this)
);
m_TelefonTipus.Load();
}
return m_TelefonTipus;
}
}
#endregion
#region Intezmeny (1) -> EmailTipus (*)
protected IAssociatedEntityCollection m_EmailTipus = null;
IReadOnlyList IIntezmeny.EmailTipus => EmailTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és EmailTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EmailTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection EmailTipus
{
get
{
if (m_EmailTipus == null)
{
m_EmailTipus = new AssociatedEntityCollection(
new Intezmeny_EmailTipus_DA(this)
);
m_EmailTipus.Load();
}
return m_EmailTipus;
}
}
#endregion
#region Intezmeny (1) -> EsemenyStatusz (*)
protected IAssociatedEntityCollection m_EsemenyStatusz = null;
IReadOnlyList IIntezmeny.EsemenyStatusz => EsemenyStatusz.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és EsemenyStatusz entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EsemenyStatusz", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection EsemenyStatusz
{
get
{
if (m_EsemenyStatusz == null)
{
m_EsemenyStatusz = new AssociatedEntityCollection(
new Intezmeny_EsemenyStatusz_DA(this)
);
m_EsemenyStatusz.Load();
}
return m_EsemenyStatusz;
}
}
#endregion
#region Intezmeny (1) -> OrszagTipus (*)
protected IAssociatedEntityCollection m_OrszagTipus = null;
IReadOnlyList IIntezmeny.OrszagTipus => OrszagTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és OrszagTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("OrszagTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection OrszagTipus
{
get
{
if (m_OrszagTipus == null)
{
m_OrszagTipus = new AssociatedEntityCollection(
new Intezmeny_OrszagTipus_DA(this)
);
m_OrszagTipus.Load();
}
return m_OrszagTipus;
}
}
#endregion
#region Intezmeny (1) -> MunkaviszonyJellege (*)
protected IAssociatedEntityCollection m_MunkaviszonyJellege = null;
IReadOnlyList IIntezmeny.MunkaviszonyJellege => MunkaviszonyJellege.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és MunkaviszonyJellege entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MunkaviszonyJellege", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection MunkaviszonyJellege
{
get
{
if (m_MunkaviszonyJellege == null)
{
m_MunkaviszonyJellege = new AssociatedEntityCollection(
new Intezmeny_MunkaviszonyJellege_DA(this)
);
m_MunkaviszonyJellege.Load();
}
return m_MunkaviszonyJellege;
}
}
#endregion
#region Intezmeny (1) -> DiakigazolvanyIgenyStatusz (*)
protected IAssociatedEntityCollection m_DiakigazolvanyIgenyStatusz = null;
IReadOnlyList IIntezmeny.DiakigazolvanyIgenyStatusz => DiakigazolvanyIgenyStatusz.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és DiakigazolvanyIgenyStatusz entitások közötti asszociáció megvalósítása.
///
[EntityProperty("DiakigazolvanyIgenyStatusz", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection DiakigazolvanyIgenyStatusz
{
get
{
if (m_DiakigazolvanyIgenyStatusz == null)
{
m_DiakigazolvanyIgenyStatusz = new AssociatedEntityCollection(
new Intezmeny_DiakigazolvanyIgenyStatusz_DA(this)
);
m_DiakigazolvanyIgenyStatusz.Load();
}
return m_DiakigazolvanyIgenyStatusz;
}
}
#endregion
#region Intezmeny (1) -> UserProfile (*)
protected IAssociatedEntityCollection m_UserProfile = null;
IReadOnlyList IIntezmeny.UserProfile => UserProfile.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és UserProfile entitások közötti asszociáció megvalósítása.
///
[EntityProperty("UserProfile", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection UserProfile
{
get
{
if (m_UserProfile == null)
{
m_UserProfile = new AssociatedEntityCollection(
new Intezmeny_UserProfile_DA(this)
);
m_UserProfile.Load();
}
return m_UserProfile;
}
}
#endregion
#region Intezmeny (1) -> KozteruletJelleg (*)
protected IAssociatedEntityCollection m_KozteruletJelleg = null;
IReadOnlyList IIntezmeny.KozteruletJelleg => KozteruletJelleg.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és KozteruletJelleg entitások közötti asszociáció megvalósítása.
///
[EntityProperty("KozteruletJelleg", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection KozteruletJelleg
{
get
{
if (m_KozteruletJelleg == null)
{
m_KozteruletJelleg = new AssociatedEntityCollection(
new Intezmeny_KozteruletJelleg_DA(this)
);
m_KozteruletJelleg.Load();
}
return m_KozteruletJelleg;
}
}
#endregion
#region Intezmeny (1) -> DiakigazolvanyIgenyTipus (*)
protected IAssociatedEntityCollection m_DiakigazolvanyIgenyTipus = null;
IReadOnlyList IIntezmeny.DiakigazolvanyIgenyTipus => DiakigazolvanyIgenyTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és DiakigazolvanyIgenyTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("DiakigazolvanyIgenyTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection DiakigazolvanyIgenyTipus
{
get
{
if (m_DiakigazolvanyIgenyTipus == null)
{
m_DiakigazolvanyIgenyTipus = new AssociatedEntityCollection(
new Intezmeny_DiakigazolvanyIgenyTipus_DA(this)
);
m_DiakigazolvanyIgenyTipus.Load();
}
return m_DiakigazolvanyIgenyTipus;
}
}
#endregion
#region Intezmeny (1) -> Honapok (*)
protected IAssociatedEntityCollection m_Honapok = null;
IReadOnlyList IIntezmeny.Honapok => Honapok.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Honapok entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Honapok", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection Honapok
{
get
{
if (m_Honapok == null)
{
m_Honapok = new AssociatedEntityCollection(
new Intezmeny_Honapok_DA(this)
);
m_Honapok.Load();
}
return m_Honapok;
}
}
#endregion
#region Intezmeny (0..1) -> FelhasznaloBelepesTortenet (*)
protected IAssociatedEntityCollection m_FelhasznaloBelepesTortenet = null;
IReadOnlyList IIntezmeny.FelhasznaloBelepesTortenet => FelhasznaloBelepesTortenet.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és FelhasznaloBelepesTortenet entitások közötti asszociáció megvalósítása.
///
[EntityProperty("FelhasznaloBelepesTortenet", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection FelhasznaloBelepesTortenet
{
get
{
if (m_FelhasznaloBelepesTortenet == null)
{
m_FelhasznaloBelepesTortenet = new AssociatedEntityCollection(
new Intezmeny_FelhasznaloBelepesTortenet_DA(this)
);
m_FelhasznaloBelepesTortenet.Load();
}
return m_FelhasznaloBelepesTortenet;
}
}
#endregion
#region Intezmeny (1) -> Megye (*)
protected IAssociatedEntityCollection m_Megye = null;
IReadOnlyList IIntezmeny.Megye => Megye.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Megye entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Megye", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection Megye
{
get
{
if (m_Megye == null)
{
m_Megye = new AssociatedEntityCollection(
new Intezmeny_Megye_DA(this)
);
m_Megye.Load();
}
return m_Megye;
}
}
#endregion
#region Intezmeny (0..1) -> Log (*)
protected IAssociatedEntityCollection m_Log = null;
IReadOnlyList IIntezmeny.Log => Log.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Log entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Log", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Log
{
get
{
if (m_Log == null)
{
m_Log = new AssociatedEntityCollection(
new Intezmeny_Log_DA(this)
);
m_Log.Load();
}
return m_Log;
}
}
#endregion
#region Intezmeny (1) -> FelhasznaloBelepes (*)
protected IAssociatedEntityCollection m_FelhasznaloBelepes = null;
IReadOnlyList IIntezmeny.FelhasznaloBelepes => FelhasznaloBelepes.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és FelhasznaloBelepes entitások közötti asszociáció megvalósítása.
///
[EntityProperty("FelhasznaloBelepes", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection FelhasznaloBelepes
{
get
{
if (m_FelhasznaloBelepes == null)
{
m_FelhasznaloBelepes = new AssociatedEntityCollection(
new Intezmeny_FelhasznaloBelepes_DA(this)
);
m_FelhasznaloBelepes.Load();
}
return m_FelhasznaloBelepes;
}
}
#endregion
#region Intezmeny (1) -> MagantanulosagOka (*)
protected IAssociatedEntityCollection m_MagantanulosagOka = null;
IReadOnlyList IIntezmeny.MagantanulosagOka => MagantanulosagOka.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és MagantanulosagOka entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MagantanulosagOka", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection MagantanulosagOka
{
get
{
if (m_MagantanulosagOka == null)
{
m_MagantanulosagOka = new AssociatedEntityCollection(
new Intezmeny_MagantanulosagOka_DA(this)
);
m_MagantanulosagOka.Load();
}
return m_MagantanulosagOka;
}
}
#endregion
#region Intezmeny (1) -> TeremTipus (*)
protected IAssociatedEntityCollection m_TeremTipus = null;
IReadOnlyList IIntezmeny.TeremTipus => TeremTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és TeremTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("TeremTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection TeremTipus
{
get
{
if (m_TeremTipus == null)
{
m_TeremTipus = new AssociatedEntityCollection(
new Intezmeny_TeremTipus_DA(this)
);
m_TeremTipus.Load();
}
return m_TeremTipus;
}
}
#endregion
#region Intezmeny (1) -> IngyenesTankonyvEllatas (*)
protected IAssociatedEntityCollection m_IngyenesTankonyvEllatas = null;
IReadOnlyList IIntezmeny.IngyenesTankonyvEllatas => IngyenesTankonyvEllatas.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és IngyenesTankonyvEllatas entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IngyenesTankonyvEllatas", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection IngyenesTankonyvEllatas
{
get
{
if (m_IngyenesTankonyvEllatas == null)
{
m_IngyenesTankonyvEllatas = new AssociatedEntityCollection(
new Intezmeny_IngyenesTankonyvEllatas_DA(this)
);
m_IngyenesTankonyvEllatas.Load();
}
return m_IngyenesTankonyvEllatas;
}
}
#endregion
#region Intezmeny (1) -> Eszkoz (*)
protected IAssociatedEntityCollection m_Eszkoz = null;
IReadOnlyList IIntezmeny.Eszkoz => Eszkoz.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Eszkoz entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Eszkoz", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Eszkoz
{
get
{
if (m_Eszkoz == null)
{
m_Eszkoz = new AssociatedEntityCollection(
new Intezmeny_Eszkoz_DA(this)
);
m_Eszkoz.Load();
}
return m_Eszkoz;
}
}
#endregion
#region Intezmeny (1) -> EszkozKategoria (*)
protected IAssociatedEntityCollection m_EszkozKategoria = null;
IReadOnlyList IIntezmeny.EszkozKategoria => EszkozKategoria.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és EszkozKategoria entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EszkozKategoria", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection EszkozKategoria
{
get
{
if (m_EszkozKategoria == null)
{
m_EszkozKategoria = new AssociatedEntityCollection(
new Intezmeny_EszkozKategoria_DA(this)
);
m_EszkozKategoria.Load();
}
return m_EszkozKategoria;
}
}
#endregion
#region Intezmeny (1) -> EszkozTipus (*)
protected IAssociatedEntityCollection m_EszkozTipus = null;
IReadOnlyList IIntezmeny.EszkozTipus => EszkozTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és EszkozTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("EszkozTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection EszkozTipus
{
get
{
if (m_EszkozTipus == null)
{
m_EszkozTipus = new AssociatedEntityCollection(
new Intezmeny_EszkozTipus_DA(this)
);
m_EszkozTipus.Load();
}
return m_EszkozTipus;
}
}
#endregion
#region Intezmeny (1) -> Terem (*)
protected IAssociatedEntityCollection m_Terem = null;
IReadOnlyList IIntezmeny.Terem => Terem.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Terem entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Terem", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection Terem
{
get
{
if (m_Terem == null)
{
m_Terem = new AssociatedEntityCollection(
new Intezmeny_Terem_DA(this)
);
m_Terem.Load();
}
return m_Terem;
}
}
#endregion
#region Intezmeny (1) -> MunkaviszonyTipus (*)
protected IAssociatedEntityCollection m_MunkaviszonyTipus = null;
IReadOnlyList IIntezmeny.MunkaviszonyTipus => MunkaviszonyTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és MunkaviszonyTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MunkaviszonyTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection MunkaviszonyTipus
{
get
{
if (m_MunkaviszonyTipus == null)
{
m_MunkaviszonyTipus = new AssociatedEntityCollection(
new Intezmeny_MunkaviszonyTipus_DA(this)
);
m_MunkaviszonyTipus.Load();
}
return m_MunkaviszonyTipus;
}
}
#endregion
#region Intezmeny (1) -> IgazolvanyTipus (*)
protected IAssociatedEntityCollection m_IgazolvanyTipus = null;
IReadOnlyList IIntezmeny.IgazolvanyTipus => IgazolvanyTipus.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és IgazolvanyTipus entitások közötti asszociáció megvalósítása.
///
[EntityProperty("IgazolvanyTipus", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection IgazolvanyTipus
{
get
{
if (m_IgazolvanyTipus == null)
{
m_IgazolvanyTipus = new AssociatedEntityCollection(
new Intezmeny_IgazolvanyTipus_DA(this)
);
m_IgazolvanyTipus.Load();
}
return m_IgazolvanyTipus;
}
}
#endregion
#region Intezmeny (1) -> Anyanyelv (*)
protected IAssociatedEntityCollection m_Anyanyelv = null;
IReadOnlyList IIntezmeny.Anyanyelv => Anyanyelv.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Anyanyelv entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Anyanyelv", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection Anyanyelv
{
get
{
if (m_Anyanyelv == null)
{
m_Anyanyelv = new AssociatedEntityCollection(
new Intezmeny_Anyanyelv_DA(this)
);
m_Anyanyelv.Load();
}
return m_Anyanyelv;
}
}
#endregion
#region Intezmeny (1) -> Alkalmazott (*)
protected IAssociatedEntityCollection m_Alkalmazott = null;
IReadOnlyList IIntezmeny.Alkalmazott => Alkalmazott.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és Alkalmazott entitások közötti asszociáció megvalósítása.
///
[EntityProperty("Alkalmazott", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "AlIntezmenyId")]
public virtual IAssociatedEntityCollection Alkalmazott
{
get
{
if (m_Alkalmazott == null)
{
m_Alkalmazott = new AssociatedEntityCollection(
new Intezmeny_Alkalmazott_DA(this)
);
m_Alkalmazott.Load();
}
return m_Alkalmazott;
}
}
#endregion
#region Intezmeny (1) -> MukodesiHely (*)
protected IAssociatedEntityCollection m_MukodesiHely = null;
IReadOnlyList IIntezmeny.MukodesiHely => MukodesiHely.Cast().ToList();
///
/// Nincs definiálva megjegyzés.
///
///
/// Az UML modellben szereplő Intezmeny és MukodesiHely entitások közötti asszociáció megvalósítása.
///
[EntityProperty("MukodesiHely", EntityPropertyBaseType.EntityCollection, typeof(IAssociatedEntityCollection), EntityCopyMethod.DeepCopy, "IntezmenyId")]
public virtual IAssociatedEntityCollection MukodesiHely
{
get
{
if (m_MukodesiHely == null)
{
m_MukodesiHely = new AssociatedEntityCollection(
new Intezmeny_MukodesiHely_DA(this)
);
m_MukodesiHely.Load();
}
return m_MukodesiHely;
}
}
#endregion
#region Intezmeny (1) -> MunkakorTipus (*)
protected IAssociatedEntityCollection