21 lines
616 B
C#
21 lines
616 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccess.Interfaces
|
|
{
|
|
public interface IPedagogusIKTAdatszolgaltatas : IEntity
|
|
{
|
|
int? /* DictionaryItem */ ElsodlegesIKTEszkoze { get; set; }
|
|
int /* DictionaryItem */ IKTEszkozhasznalatModja { get; set; }
|
|
int /* DictionaryItem */ IKTKompetenciaSzintje { get; set; }
|
|
|
|
int AlkalmazottId { get; set; }
|
|
IAlkalmazott Alkalmazott { get; set; }
|
|
int IntezmenyId { get; set; }
|
|
IIntezmeny Intezmeny { get; set; }
|
|
int TanevId { get; set; }
|
|
ITanev Tanev { get; set; }
|
|
|
|
}
|
|
}
|
|
|