60 lines
2.6 KiB
C#
60 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface IOsztaly : IOsztalyCsoport
|
|
{
|
|
string OsztalynaploLeirasa { get; set; }
|
|
DateTime? OsztalynaploMegnyitasa { get; set; }
|
|
DateTime? OsztalynaploZarasa { get; set; }
|
|
int? /* DictionaryItem */ Agazat { get; set; }
|
|
int? /* DictionaryItem */ Reszszakkepesites { get; set; }
|
|
int? /* DictionaryItem */ Szakkepesites { get; set; }
|
|
int? /* DictionaryItem */ SzakmaCsoport { get; set; }
|
|
int? /* DictionaryItem */ GimnaziumiEvfolyamTipusId { get; set; }
|
|
bool Kettannyelvu { get; set; }
|
|
bool Nemzetisegi { get; set; }
|
|
bool NyelviElokeszito { get; set; }
|
|
bool Sport { get; set; }
|
|
bool AJTehettseggondozoProgram { get; set; }
|
|
bool AJProgram { get; set; }
|
|
bool VegyesEvfolyamu { get; set; }
|
|
bool VegyesSzakkepzesu { get; set; }
|
|
string SpecialisJellemzo { get; set; }
|
|
string VegyesEvfolyamuTanterv { get; set; }
|
|
string OsztalypenzBankszamlaszamKedvezmenyezettNeve { get; set; }
|
|
string OsztalypenzBankszamlaszama { get; set; }
|
|
bool VPOSEngedelyezett { get; set; }
|
|
int? /* DictionaryItem */ AranyJanosProgramTipusId { get; set; }
|
|
int? /* DictionaryItem */ JogviszonyTipusId { get; set; }
|
|
int? /* DictionaryItem */ AgazatUjSzktTipusId { get; set; }
|
|
int? /* DictionaryItem */ SzakmairanyTipusId { get; set; }
|
|
int? /* DictionaryItem */ SzakmaTipusId { get; set; }
|
|
int? /* DictionaryItem */ SzakiranyNktTipusId { get; set; }
|
|
int? /* DictionaryItem */ SzakkepesitesNktTipusId { get; set; }
|
|
int? /* DictionaryItem */ TanulmanyiTeruletNktTipusId { get; set; }
|
|
int? /* DictionaryItem */ MufajTipusId { get; set; }
|
|
int? /* DictionaryItem */ TanszakTipusId { get; set; }
|
|
|
|
int OsztalyFonokId { get; set; }
|
|
IAlkalmazott OsztalyFonok { get; set; }
|
|
int OfoHelyettesId { get; set; }
|
|
IAlkalmazott OfoHelyettes { get; set; }
|
|
int TantervId { get; set; }
|
|
ITanterv Tanterv { get; set; }
|
|
int SZMKKepviseloHelyettesId { get; set; }
|
|
IGondviselo SZMKKepviseloHelyettes { get; set; }
|
|
int SZMKKepviseloId { get; set; }
|
|
IGondviselo SZMKKepviselo { get; set; }
|
|
int AlIntezmenyId { get; set; }
|
|
IIntezmeny AlIntezmeny { get; set; }
|
|
int AlTanevId { get; set; }
|
|
ITanev AlTanev { get; set; }
|
|
|
|
IReadOnlyList<INaploEllenorzes> NaploEllenorzes { get; }
|
|
IReadOnlyList<ICsoport> CsoportBontasok { get; }
|
|
IReadOnlyList<ITanuloEsemeny> TanuloEsemeny { get; }
|
|
}
|
|
}
|
|
|