This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAMIFotargy : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAMITTFSablon : IEntity
{
int? AMIFotargyId { get; set; }
int? AMITagozatId { get; set; }
int? AMITantargyKotelezosegId { get; set; }
int? EvfolyamTipusId { get; set; }
int? Idotartam { get; set; }
bool IsCsoportos { get; set; }
int? OktatasiNevelesiFeladatId { get; set; }
int? TanevSorszam { get; set; }
int AMITantargySablonId { get; set; }
IAMITantargySablon AMITantargySablon { get; set; }
IReadOnlyList<IAMITTFSablon> AMIAltargy { get; }
IReadOnlyList<IAMITTFSablon> AMIFotargy { get; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAMITagozat : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAMITantargyKotelezoseg : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAMITantargySablon : IEntity
{
bool IsHangszer { get; set; }
string Nev { get; set; }
IReadOnlyList<ITantargy> Tantargy { get; }
IReadOnlyList<IAMITTFSablon> AMITTFSablon { get; }
}
}

View file

@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAdatszolgaltatasENaplo : IEntity
{
int? /* DictionaryItem */ ENaploForrasa { get; set; }
int? /* DictionaryItem */ ENaploInfraja { get; set; }
int? /* DictionaryItem */ ENaploTipusa { get; set; }
bool? IsEllenorzo { get; set; }
bool? IsENaplo { get; set; }
bool? IsPapirnaplo { get; set; }
Byte[] Szerzodes { get; set; }
DateTime? SzerzodesKezdete { get; set; }
DateTime? SzerzodesLejarata { get; set; }
int? SzerzodesOsszege { get; set; }
string SzerzodoSzemelyNeve { get; set; }
int? /* DictionaryItem */ SzerzodoSzemelyPozicioja { get; set; }
string SzerzodesFileName { get; set; }
int? /* DictionaryItem */ ENaploHasznalata { get; set; }
int? ProjektorokSzama { get; set; }
int? /* DictionaryItem */ WiFiEleres { get; set; }
int? MukodoProjektorokSzama { get; set; }
int? TermekSzama { get; set; }
int? WiFiLefedettTermekSzama { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAdattisztitasIndikator : IEntity
{
string AdatKor { get; set; }
string Kod { get; set; }
string Leiras { get; set; }
string Mezo { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAdattisztitasStatisztika : IEntity
{
string AdatKor { get; set; }
int? AdatkorElemszam { get; set; }
int? HibakSzama { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAgazatAlapOktMegnevTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAgazatAlapVizsgaEredTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAgazatReszSzakmaTipus : IDictionaryItemBase
{
int? /* DictionaryItem */ OktatasiNevelesiFeladatId { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAgazatTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAgazatUjSzktTipus : IDictionaryItemBase
{
int? AgazatiBesorolas { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,83 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAlkalmazott : IFelhasznalo
{
bool? AllandoHelyettesitesre { get; set; }
bool Foallas { get; set; }
bool? TanariAutomataMegajanlasEngedelyezes { get; set; }
int? TanariErtekelesHatarertek { get; set; }
bool Diakolimpia { get; set; }
bool SzakertoiVizsgaelnoki { get; set; }
bool Szakvizsga { get; set; }
bool Tovabbkepzes { get; set; }
bool? OrakEgyhuzamban { get; set; }
bool KozossegiSzolgalatKezelo { get; set; }
bool ElfogadottSzandeknyilatkozat { get; set; }
int? /* DictionaryItem */ KKKepesitesId { get; set; }
string SZTSZKod { get; set; }
int KotelezoEvesSzabadsagkeret { get; set; }
string A30KreditesKurzusOklevelszam { get; set; }
bool LepKezelo { get; set; }
bool IsHrKezelo { get; set; }
bool IsKuldhetoPedMinositesSzRnek { get; set; }
bool IsDualisKepzohelyiOktato { get; set; }
bool IsSzakOktatasertFelelos { get; set; }
bool IsKozpontilagSzinkronizalt { get; set; }
DateTime? FeltarElfogadasDatuma { get; set; }
bool IsFeltarElfogadott { get; set; }
bool HasEfopEszkoz { get; set; }
string SZTSZKod2 { get; set; }
string Bankszamlaszam { get; set; }
int? /* DictionaryItem */ BankszamlaTulajdonosTipus { get; set; }
string BankszamlatulajNeve { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
IReadOnlyList<IEszkoz> FelelosEszkoz { get; }
IReadOnlyList<IOsztaly> OfoOsztalyai { get; }
IReadOnlyList<IOsztaly> HelyettesOsztalyai { get; }
IReadOnlyList<ICsoport> VezetoCsoportjai { get; }
IReadOnlyList<IFoglalkozas> Foglalkozas { get; }
IReadOnlyList<ITanmenet> Tanmenete { get; }
IReadOnlyList<ITanitasiOra> HelyettesitettOrak { get; }
IReadOnlyList<ITanitasiOra> TanitasiOra { get; }
IReadOnlyList<ITanuloErtekeles> Ertekelesek { get; }
IReadOnlyList<IIgazolas> TanuloIgazolasok { get; }
IReadOnlyList<IOralatogatas> Oralatogatasok { get; }
IReadOnlyList<IMunkaugyiAdatok> MunkaugyiAdatok { get; }
IReadOnlyList<ITerem> TermekFelelose { get; }
IReadOnlyList<IOrarendiOra> OrarendiOra { get; }
IReadOnlyList<INemKotottMunkaido> NemKotottMunkaido { get; }
IReadOnlyList<IPedagogusIKTAdatszolgaltatas> PedagogusIKTAdatszolgaltatas { get; }
IReadOnlyList<ITovabbiMunkaugyiAdatok> TovabbiMunkaugyiAdatok { get; }
IReadOnlyList<INATKerdoiv> NATKerdoiv { get; }
IReadOnlyList<IKKTanitoVezgettseg> KKTanitoVezgettseg { get; }
IReadOnlyList<IKKTanarVegzettseg> KKTanarVegzettseg { get; }
IReadOnlyList<IKKAMIVegzettseg> KKAMIVegzettseg { get; }
IReadOnlyList<IKKGyogypedVegzettseg> KKGyogypedVegzettseg { get; }
IReadOnlyList<IDiakolimpia> Diakolimpiak { get; }
IReadOnlyList<IFogadoora> Fogadoora { get; }
IReadOnlyList<ITavolletJelento> TavolletJelento { get; }
IReadOnlyList<ISAPTavollet> SAPTavollet { get; }
IReadOnlyList<ISzamonkeresElorejelzes> SzamonkeresElorejelzes { get; }
IReadOnlyList<ITovabbkepzes> TovabbkepzesAdatok { get; }
IReadOnlyList<IDKT_Feladat> DKT_Feladat { get; }
IReadOnlyList<IDKT_Feladat> HelyettesitoAlkalmazottFeladat { get; }
IReadOnlyList<IDKT_Feladat> RogzitoAlkalmazottFeladat { get; }
IReadOnlyList<IDKT_File> DKT_File { get; }
IReadOnlyList<IOraFile> OraFile { get; }
IReadOnlyList<IEszkozIgenyles> EszkozIgenyles { get; }
IReadOnlyList<IMunkaSzerzodes> MunkaSzerzodes { get; }
IReadOnlyList<IErtekelesTantargyi> RogzitettTantargyiErtekelesek { get; }
IReadOnlyList<IErtekelesMagSzor> RogzitettMagSzorErtekelesek { get; }
IReadOnlyList<ITanulo> Tanulo { get; }
IReadOnlyList<IHelyettesitesiIdoszak> HelyettesitettOrarend { get; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAlkalmazottMunkaKorTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAllampolgarsag : IDictionaryItemBase
{
string Kod2 { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAmiJellemzoTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAnyanyelv : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IApaczaiKgrJogosult : IEntity
{
int? Osszeg { get; set; }
int StatuszId { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAranyJanosProgramTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,8 @@
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAssociatedCollection<out TEntityType> : IEnumerable<TEntityType>
{
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBankszamlaTulajdonosTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBesorolasiFokozatTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiAnyag : IEntity
{
int? Egysegar { get; set; }
string Leiras { get; set; }
int? /* DictionaryItem */ MennyisegiEgysegId { get; set; }
string Nev { get; set; }
string SAPKod { get; set; }
string TetelNev { get; set; }
string ERAAzonosito { get; set; }
int? Mennyiseg { get; set; }
int BeszerzesiIgenyId { get; set; }
IBeszerzesiIgeny BeszerzesiIgeny { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiAnyagtorzs : IEntity
{
int? Egysegar { get; set; }
string Leiras { get; set; }
int? /* DictionaryItem */ MennyisegiEgysegId { get; set; }
string Nev { get; set; }
string SAPKod { get; set; }
string TetelNev { get; set; }
string ERAAzonosito { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiIgeny : IEntity
{
bool BVOP { get; set; }
bool IsPalyazat { get; set; }
bool KEF { get; set; }
string PalyazatAzonosito { get; set; }
int /* DictionaryItem */ StatuszId { get; set; }
bool NKOH { get; set; }
DateTime RogzitesDatum { get; set; }
int RogzitoId { get; set; }
IFelhasznalo Rogzito { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IBeszerzesiSzallito> BeszerzesiSzallito { get; }
IReadOnlyList<IBeszerzesiIgenyDokumentum> BeszerzesiIgenyDokumentum { get; }
IReadOnlyList<IBeszerzesiAnyag> BeszerzesiAnyag { get; }
IReadOnlyList<IBeszerzesiIgenyMegjegyzes> BeszerzesiIgenyMegjegyzes { get; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiIgenyDokumentum : IEntity
{
int IktatottDokumentumId { get; set; }
IIktatottDokumentum IktatottDokumentum { get; set; }
int BeszerzesiIgenyId { get; set; }
IBeszerzesiIgeny BeszerzesiIgeny { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiIgenyMegjegyzes : IEntity
{
string Megjegyzes { get; set; }
DateTime RogzitesDatum { get; set; }
int RogzitoId { get; set; }
IFelhasznalo Rogzito { get; set; }
int BeszerzesiIgenyId { get; set; }
IBeszerzesiIgeny BeszerzesiIgeny { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiIgenySatusz : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiSzallito : IEntity
{
string Adoszam { get; set; }
string Ajto { get; set; }
string EmailCim { get; set; }
string Emelet { get; set; }
string Hazszam { get; set; }
string HelysegNev { get; set; }
string IrSzam { get; set; }
string KepviseloNev { get; set; }
int? /* DictionaryItem */ KozteruletJellegId { get; set; }
string KozteruletNev { get; set; }
string Nev { get; set; }
string SAPKod { get; set; }
string Telefonszam { get; set; }
string FizetesiMod { get; set; }
int BeszerzesiIgenyId { get; set; }
IBeszerzesiIgeny BeszerzesiIgeny { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IBeszerzesiSzallitotorzs : IEntity
{
string Adoszam { get; set; }
string Ajto { get; set; }
string EmailCim { get; set; }
string Emelet { get; set; }
string Hazszam { get; set; }
string HelysegNev { get; set; }
string IrSzam { get; set; }
string KepviseloNev { get; set; }
int? /* DictionaryItem */ KozteruletJellegId { get; set; }
string KozteruletNev { get; set; }
string Nev { get; set; }
string SAPKod { get; set; }
string Telefonszam { get; set; }
string FizetesiMod { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICim : IEntity
{
int /* DictionaryItem */ CimTipusa { get; set; }
int /* DictionaryItem */ Orszag { get; set; }
string IranyitoSzam { get; set; }
string Varos { get; set; }
string Megye { get; set; }
string Kozterulet { get; set; }
string Hazszam { get; set; }
string Epulet { get; set; }
string Lepcsohaz { get; set; }
string Emelet { get; set; }
string Ajto { get; set; }
string OsszetettCim { get; set; }
bool Alapertelmezett { get; set; }
string KozteruletJellegeNev { get; set; }
int FelhasznaloId { get; set; }
IFelhasznalo Felhasznalo { get; set; }
int GondviseloId { get; set; }
IGondviselo Gondviselo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICimTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IConfigTipus : IEntity
{
string Config { get; set; }
string Modul { get; set; }
IReadOnlyList<IIntezmenyConfig> IntezmenyConfig { get; }
}
}

View file

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICsatolmany : IEntity
{
DateTime? AdminTorlesIdopont { get; set; }
DateTime FeltoltesIdopont { get; set; }
Guid FileServiceGuid { get; set; }
bool IsAdminTorolt { get; set; }
double Meret { get; set; }
string Nev { get; set; }
string Utvonal { get; set; }
bool IsFileServiceTorolt { get; set; }
int AdminFelhasznaloId { get; set; }
IFelhasznalo AdminFelhasznalo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IHaziFeladatCsatolmany> HaziFeladatCsatolmany { get; }
}
}

View file

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICsengetesiRend : IEntity
{
bool? Aktiv { get; set; }
string Nev { get; set; }
int MukodesiHelyId { get; set; }
IMukodesiHely MukodesiHely { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<ICsengetesiRendOra> CsengetesiRendOra { get; }
IReadOnlyList<ITanevRendje> TanevRendje { get; }
IReadOnlyList<INaptariNap> AlapNaptariNap { get; }
IReadOnlyList<INaptariNap> AktivNaptariNap { get; }
}
}

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICsengetesiRendOra : IEntity
{
DateTime Kezdete { get; set; }
int Oraszam { get; set; }
DateTime Vege { get; set; }
int CsengetesiRendId { get; set; }
ICsengetesiRend CsengetesiRend { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICsoport : IOsztalyCsoport
{
int? /* DictionaryItem */ Tipusa { get; set; }
string CsoportnaploLeiras { get; set; }
DateTime? CsoportnaploMegnyitasa { get; set; }
DateTime? CsoportnaploZarasa { get; set; }
bool IsAutoEgyeniCsoport { get; set; }
bool IsValtozoOsszetetelu { get; set; }
string DualisKepzohelyAdoszama { get; set; }
string DualisKepzohelyNeve { get; set; }
int CsoportVezetoId { get; set; }
IAlkalmazott CsoportVezeto { get; set; }
int OsztalyBontasId { get; set; }
IOsztaly OsztalyBontas { get; set; }
int SzervezetId { get; set; }
ISzervezet Szervezet { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
IReadOnlyList<IOsszefuggoSzakGyak> OsszefuggoSzakGyak { get; }
}
}

View file

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICsoportTipus : IDictionaryItemBase
{
bool IsTanoraiCelu { get; set; }
int? OraPerc { get; set; }
bool IsMuveszeti { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
IReadOnlyList<ICsoportTipus_FoglalkozasTipus> FoglalkozasTipus { get; }
}
}

View file

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface ICsoportTipus_FoglalkozasTipus : IEntity
{
bool? Csoportbontott { get; set; }
int CsoportTipusId { get; set; }
ICsoportTipus CsoportTipus { get; set; }
int FoglalkozasTipusId { get; set; }
IFoglalkozasTipus FoglalkozasTipus { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,71 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDKT_Feladat : IEntity
{
bool IsAktiv { get; set; }
bool IsModosithato { get; set; }
bool IsTorolheto { get; set; }
bool IsLathato { get; set; }
string Nev { get; set; }
string RovidNev { get; set; }
string AliasNev { get; set; }
string Leiras { get; set; }
string Megjegyzes { get; set; }
DateTime? BeadasHatarido { get; set; }
string Cim { get; set; }
DateTime? Datum { get; set; }
int? FeladatErtekelesTipusId { get; set; }
int? FeladatTipusId { get; set; }
DateTime? Idopont { get; set; }
Guid IntezmenyGuid { get; set; }
bool IsKretaFeladat { get; set; }
DateTime? LathatosagIdopont { get; set; }
int? OrarendiOraGroupId { get; set; }
int? Oraszam { get; set; }
DateTime RogzitesIdopont { get; set; }
string Szoveg { get; set; }
int? HfBeadandoTipusId { get; set; }
int? HfCsatolasEngedelyezesTipusId { get; set; }
int? HfEloreBeirtFeladatMegjeleniteseId { get; set; }
int? OfBeadandoTipusId { get; set; }
int? OfCsatolasEngedelyezesTipusId { get; set; }
int? OfEloreBeirtFeladatMegjeleniteseId { get; set; }
int? TanitasiOraId { get; set; }
bool IsErtesitesKikuldve { get; set; }
Guid? GroupId { get; set; }
int? IdotartamPerc { get; set; }
bool Kesz { get; set; }
int? EgyediErtekelesTipusId { get; set; }
double? Pontszam { get; set; }
Guid? KurzusId { get; set; }
Guid? KurzusObjectId { get; set; }
string NyelvId { get; set; }
int? ParentId { get; set; }
int? RogzitoRendszerId { get; set; }
int? XeropanAssignmentId { get; set; }
int? XeropanBundleId { get; set; }
int? XeropanLessonId { get; set; }
bool XeropanTorolt { get; set; }
int TantargyId { get; set; }
ITantargy Tantargy { get; set; }
int OsztalyCsoportId { get; set; }
IOsztalyCsoport OsztalyCsoport { get; set; }
int AlkalmazottId { get; set; }
IAlkalmazott Alkalmazott { get; set; }
int HelyettesitoAlkalmazottId { get; set; }
IAlkalmazott HelyettesitoAlkalmazott { get; set; }
int RogzitoAlkalmazottId { get; set; }
IAlkalmazott RogzitoAlkalmazott { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IDKT_FeladatFile> DKT_FeladatFile { get; }
}
}

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDKT_FeladatFile : IEntity
{
bool IsAktiv { get; set; }
bool IsModosithato { get; set; }
bool IsTorolheto { get; set; }
bool IsLathato { get; set; }
Guid IntezmenyGuid { get; set; }
int FeladatId { get; set; }
IDKT_Feladat Feladat { get; set; }
int FileId { get; set; }
IDKT_File File { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDKT_File : IEntity
{
bool IsAktiv { get; set; }
bool IsModosithato { get; set; }
bool IsTorolheto { get; set; }
bool IsLathato { get; set; }
string Cim { get; set; }
int? EvfolyamId { get; set; }
string Extension { get; set; }
DateTime FeltoltesDatum { get; set; }
Guid? FileGuid { get; set; }
string FileNev { get; set; }
int? FileSizeByte { get; set; }
string Hibauzenet { get; set; }
Guid IntezmenyGuid { get; set; }
bool IsIdeiglenes { get; set; }
int? OsztalyCsoportId { get; set; }
int? TantargyId { get; set; }
int? TantargyKategoriaId { get; set; }
string Utvonal { get; set; }
DateTime? VeglegesitesDatum { get; set; }
int FeltoltoTanuloId { get; set; }
ITanulo FeltoltoTanulo { get; set; }
int FeltoltoAlkalmazottId { get; set; }
IAlkalmazott FeltoltoAlkalmazott { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IDKT_FeladatFile> DKT_FeladatFile { get; }
IReadOnlyList<IOraFile> OraFile { get; }
}
}

View file

@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDashboardUzenet : IEntity
{
string Cim { get; set; }
string EgyediAzonosito { get; set; }
DateTime? ErvenyessegKezdete { get; set; }
DateTime? ErvenyessegVege { get; set; }
DateTime? KiemeltIdoszakVege { get; set; }
int Sorrend { get; set; }
string Tartalom { get; set; }
bool IsPopup { get; set; }
int? PopupGyakorisagaPercben { get; set; }
bool IsAdmin { get; set; }
bool IsTanar { get; set; }
bool IsIntezmenyi { get; set; }
bool IsFelhasznaloi { get; set; }
int DashboardUzenetKategoriaId { get; set; }
IDashboardUzenetKategoria DashboardUzenetKategoria { get; set; }
IReadOnlyList<IDashboardUzenetFelhasznalo> DashboardUzenetFelhasznalo { get; }
IReadOnlyList<IDashboardUzenetIntezmeny> DashboardUzenetIntezmeny { get; }
}
}

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDashboardUzenetFelhasznalo : IEntity
{
int MegjelenitesekSzama { get; set; }
DateTime? UtolsoMegtekintesIdeje { get; set; }
string EgyediMuvelet { get; set; }
int DashboardUzenetId { get; set; }
IDashboardUzenet DashboardUzenet { get; set; }
int FelhasznaloId { get; set; }
IFelhasznalo Felhasznalo { get; set; }
int GondviseloId { get; set; }
IGondviselo Gondviselo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDashboardUzenetIntezmeny : IEntity
{
bool IsAlkalmazottnak { get; set; }
bool IsGondviselonek { get; set; }
bool IsTaulonak { get; set; }
string Tartalom { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int DashboardUzenetId { get; set; }
IDashboardUzenet DashboardUzenet { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDashboardUzenetKategoria : IEntity
{
string Nev { get; set; }
IReadOnlyList<IDashboardUzenet> DashboardUzenet { get; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDiakigazolvanyIgenyStatusz : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDiakigazolvanyIgenyTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDiakolimpia : IEntity
{
DateTime Datum { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int TanarId { get; set; }
IAlkalmazott Tanar { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDictionaryItemBase : IEntity
{
int? Value { get; set; }
string Name { get; set; }
string Name_1 { get; set; }
string Name_2 { get; set; }
string Name_3 { get; set; }
string Name_4 { get; set; }
bool Visible { get; set; }
string Code { get; set; }
string Type { get; set; }
bool Protected { get; set; }
string Color { get; set; }
int? Order { get; set; }
string BgColor { get; set; }
string Description { get; set; }
bool IsActive { get; set; }
string ShortName { get; set; }
int DictionaryTypeId { get; set; }
IDictionaryType DictionaryType { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IDictionaryItemBaseNyelv> DictionaryItemBaseNyelv { get; }
}
}

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDictionaryItemBaseNyelv : IEntity
{
string Name { get; set; }
string Name_1 { get; set; }
string Name_2 { get; set; }
string Name_3 { get; set; }
string Name_4 { get; set; }
int /* DictionaryItem */ NyelvId { get; set; }
string ShortName { get; set; }
int DictionaryItemBaseId { get; set; }
IDictionaryItemBase DictionaryItemBase { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDictionaryType : IEntity
{
string CodeName { get; set; }
string Description { get; set; }
bool IsColorEditable { get; set; }
bool IsCustomItemAllowed { get; set; }
string Name { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IDictionaryItemBase> DictionaryItemBase { get; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDigEszkozTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDigPlatformTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDigTamEszkozTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentum : IEntity
{
Byte[] Tartalom { get; set; }
int IktatottDokumentumId { get; set; }
IIktatottDokumentum IktatottDokumentum { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentumElemiSzint : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentumKategoria : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentumKulcsszo : IEntity
{
int /* DictionaryItem */ DokumentumKulcsszoTipus { get; set; }
int IktatottDokumentumId { get; set; }
IIktatottDokumentum IktatottDokumentum { get; set; }
int DokumentumKulcsszoErtekId { get; set; }
IDokumentumKulcsszoErtek DokumentumKulcsszoErtek { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentumKulcsszoErtek : IEntity
{
string Ertek { get; set; }
int? EntityId { get; set; }
string EntityName { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IDokumentumKulcsszo> DokumentumKulcsszo { get; }
}
}

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentumKulcsszoTipus : IDictionaryItemBase
{
string PoszeidonKulcsszoTipus { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentumStatusz : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDokumentumTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDualisHelyszinTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IDualisSzerzodesFile : IEntity
{
bool IsAlkalmazottAltalTorolt { get; set; }
int FileId { get; set; }
IFile File { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IENaploForras : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IENaploHasznalat : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IENaploInfra : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IENaploTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IESLAdat : IEntity
{
DateTime Datum { get; set; }
string Ertek { get; set; }
int /* DictionaryItem */ Tipus { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IESLAdatTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IESLTantargykategoria : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IEgyHaztartasbanElok : IEntity
{
string AnyjaNeve { get; set; }
string Email { get; set; }
bool IsCovidFertozott { get; set; }
bool IsFelhasznaloTorolt { get; set; }
bool IsGondviseloTorolt { get; set; }
string Nev { get; set; }
int /* DictionaryItem */ RokonsagiFokId { get; set; }
string SzuletesiHely { get; set; }
DateTime SzuletesiIdo { get; set; }
string TajSzam { get; set; }
string Telefon { get; set; }
int RogzitoGondviseloId { get; set; }
IGondviselo RogzitoGondviselo { get; set; }
int RogzitoFelhasznaloId { get; set; }
IFelhasznalo RogzitoFelhasznalo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IEgyebTevekenysegekTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IElearningElerhetoseg : IEntity
{
string ElearningAzonosito { get; set; }
DateTime? KezdoDatum { get; set; }
int? /* DictionaryItem */ SzerepkorTipusId { get; set; }
DateTime? VegDatum { get; set; }
bool IsGondviselonelMegjelenik { get; set; }
bool IsTanulonalMegjelenik { get; set; }
string RolePackage { get; set; }
string KurzusNeve { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IElearningFelhasznalo> ElearningFelhasznalo { get; }
}
}

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IElearningFelhasznalo : IEntity
{
int GondviseloId { get; set; }
IGondviselo Gondviselo { get; set; }
int ElearningElerhetosegId { get; set; }
IElearningElerhetoseg ElearningElerhetoseg { get; set; }
int FelhasznaloId { get; set; }
IFelhasznalo Felhasznalo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IEletpalyamodellFokozatTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IEletpalyamodellStatuszok : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IElsodlegesIKTEszkoz : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IElvegzettKurzus : IEntity
{
int GondviseloId { get; set; }
IGondviselo Gondviselo { get; set; }
int KurzusId { get; set; }
IKurzus Kurzus { get; set; }
int FelhasznaloId { get; set; }
IFelhasznalo Felhasznalo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IEmail : IEntity
{
int /* DictionaryItem */ EmailTipusa { get; set; }
string EmailCim { get; set; }
bool Alapertelmezett { get; set; }
bool IsPublic { get; set; }
Guid Guid { get; set; }
bool IsHibasanMegadva { get; set; }
bool IsMobilRogzitett { get; set; }
int GondviseloId { get; set; }
IGondviselo Gondviselo { get; set; }
int FelhasznaloId { get; set; }
IFelhasznalo Felhasznalo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IEmailTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,8 @@
namespace Kreta.DataAccess.Interfaces
{
public interface IEntity
{
int ID { get; set; }
bool Torolt { get; set; }
}
}

View file

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IEpjTanuloiAdat : IEntity
{
double? Erdemjegy { get; set; }
bool IsAktiv { get; set; }
bool IsJavitovizsga { get; set; }
bool IsPotvizsga { get; set; }
DateTime? KifizetesDatuma { get; set; }
string SzakkepesitesAzonosito { get; set; }
string SzakkepesitesMegnevezes { get; set; }
DateTime? VizsgaDatum { get; set; }
string BizonyitvanySzama { get; set; }
string OktatasiAzonosito { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErettsegiEredmeny : IEntity
{
int /* DictionaryItem */ ErettsegiSzint { get; set; }
int /* DictionaryItem */ ErettsegiTantargy { get; set; }
int /* DictionaryItem */ ErettsegiTipus { get; set; }
int? GyakorlatPontszam { get; set; }
int? IrasbeliPontszam { get; set; }
string Megjegyzes { get; set; }
int? OsszPontszam { get; set; }
int? SzobeliPontszam { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErettsegiKerdes : IEntity
{
string Cim { get; set; }
int? /* DictionaryItem */ ErettsegiSzintId { get; set; }
int? /* DictionaryItem */ ErettsegiTantargyId { get; set; }
string HelyesValasz { get; set; }
string Kategoria { get; set; }
string Kep { get; set; }
string Kerdes { get; set; }
string Szoveg { get; set; }
string Tema { get; set; }
string ValaszB { get; set; }
string ValaszC { get; set; }
string ValaszD { get; set; }
string ValaszE { get; set; }
string ValaszF { get; set; }
string ValaszSzoveges { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IErettsegiValasz> ErettsegiValasz { get; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErettsegiSzint : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErettsegiTantargy : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErettsegiTantargyAdatok : IEntity
{
int /* DictionaryItem */ ErettsegiSzint { get; set; }
int /* DictionaryItem */ ErettsegiTantargy { get; set; }
int GyakorlatMaxPontszam { get; set; }
int IrasbeliMaxPontszam { get; set; }
bool IsGyakorlat { get; set; }
bool IsIrasbeli { get; set; }
bool IsSzobeli { get; set; }
int OsszMaxPontszam { get; set; }
int SzobeliMaxPontszam { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErettsegiTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErettsegiValasz : IEntity
{
DateTime Datum { get; set; }
bool Helyes { get; set; }
string Valasz { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int ErettsegiKerdesId { get; set; }
IErettsegiKerdes ErettsegiKerdes { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtMondatbankTipus : IDictionaryItemBase
{
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtekelesMagSzor : IEntity
{
DateTime Datum { get; set; }
int /* DictionaryItem */ ErtekelesTipusId { get; set; }
bool IsErtesitesElkuldve { get; set; }
bool IsFromMobil { get; set; }
bool IsMagatartas { get; }
bool IsSzorgalom { get; }
int? /* DictionaryItem */ MagatartasErtekelesTipusId { get; set; }
int? /* DictionaryItem */ MagatartasOsztalyzatTipusId { get; set; }
string MagatartasSzoveg { get; set; }
string MagatartasSzovegFormazott { get; set; }
string MagatartasSzovegRovidNev { get; set; }
DateTime RogzitesDatum { get; set; }
int? /* DictionaryItem */ RogziteskoriEvfolyamTipusId { get; set; }
int? /* DictionaryItem */ SzorgalomErtekelesTipusId { get; set; }
int? /* DictionaryItem */ SzorgalomOsztalyzatTipusId { get; set; }
string SzorgalomSzoveg { get; set; }
string SzorgalomSzovegFormazott { get; set; }
string SzorgalomSzovegRovidNev { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int RogzitoAlkalmazottId { get; set; }
IAlkalmazott RogzitoAlkalmazott { get; set; }
int RogziteskoriOsztalyId { get; set; }
IOsztalyCsoport RogziteskoriOsztaly { get; set; }
int OsztalyCsoportId { get; set; }
IOsztalyCsoport OsztalyCsoport { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IErtekelesMagSzorNyelv> ErtekelesMagSzorNyelv { get; }
}
}

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtekelesMagSzorNyelv : IEntity
{
string MagatartasSzoveg { get; set; }
string MagatartasSzovegFormazott { get; set; }
string MagatartasSzovegRovidNev { get; set; }
int /* DictionaryItem */ NyelvId { get; set; }
string SzorgalomSzoveg { get; set; }
string SzorgalomSzovegFormazott { get; set; }
string SzorgalomSzovegRovidNev { get; set; }
int ErtekelesMagSzorId { get; set; }
IErtekelesMagSzor ErtekelesMagSzor { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtekelesMod : IDictionaryItemBase
{
bool IsSzamonkeresKorlatozott { get; set; }
bool IsBold { get; set; }
int Suly { get; set; }
int AlIntezmenyId { get; set; }
IIntezmeny AlIntezmeny { get; set; }
int AlTanevId { get; set; }
ITanev AlTanev { get; set; }
}
}

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtekelesMondatbank : IEntity
{
int? /* DictionaryItem */ ErtekelesTipusa { get; set; }
int? /* DictionaryItem */ EvfolyamTipusa { get; set; }
string RovidNev { get; set; }
string Szoveg { get; set; }
int /* DictionaryItem */ TipusId { get; set; }
bool Importalt { get; set; }
int TantargyId { get; set; }
ITantargy Tantargy { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IErtekelesMondatbankNyelv> ErtekelesMondatbankNyelv { get; }
}
}

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtekelesMondatbankNyelv : IEntity
{
int /* DictionaryItem */ NyelvId { get; set; }
string RovidNev { get; set; }
string Szoveg { get; set; }
int ErtekelesMondatbankId { get; set; }
IErtekelesMondatbank ErtekelesMondatbank { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

View file

@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtekelesTantargyi : IEntity
{
DateTime Datum { get; set; }
int? /* DictionaryItem */ ErtekelesModId { get; set; }
int /* DictionaryItem */ ErtekelesTipusId { get; set; }
bool IsErtesitesElkuldve { get; set; }
bool IsFromMobil { get; set; }
int? /* DictionaryItem */ OsztalyzatTipusId { get; set; }
int? /* DictionaryItem */ RogziteskoriEvfolyamTipusId { get; set; }
DateTime RogzitesDatum { get; set; }
int? Szazalek { get; set; }
string Szoveg { get; set; }
string SzovegFormazott { get; set; }
string SzovegRovidNev { get; set; }
string Tema { get; set; }
int TantargyId { get; set; }
ITantargy Tantargy { get; set; }
int RogziteskoriOsztalyId { get; set; }
IOsztalyCsoport RogziteskoriOsztaly { get; set; }
int TanuloId { get; set; }
ITanulo Tanulo { get; set; }
int OsszefuggoSzakGyakId { get; set; }
IOsszefuggoSzakGyak OsszefuggoSzakGyak { get; set; }
int RogzitoAlkalmazottId { get; set; }
IAlkalmazott RogzitoAlkalmazott { get; set; }
int OsztalyCsoportId { get; set; }
IOsztalyCsoport OsztalyCsoport { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
IReadOnlyList<IErtekelesTantargyiNyelv> ErtekelesTantargyiNyelv { get; }
}
}

View file

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IErtekelesTantargyiNyelv : IEntity
{
int /* DictionaryItem */ NyelvId { get; set; }
string Szoveg { get; set; }
string SzovegFormazott { get; set; }
string SzovegRovidNev { get; set; }
string Tema { get; set; }
int ErtekelesTantargyiId { get; set; }
IErtekelesTantargyi ErtekelesTantargyi { get; set; }
int IntezmenyId { get; set; }
IIntezmeny Intezmeny { get; set; }
int TanevId { get; set; }
ITanev Tanev { get; set; }
}
}

Some files were not shown because too many files have changed in this diff Show more