2022-03-18 21:34:16 +04:00
|
|
|
|
using CoreModels.Enums.Department;
|
|
|
|
|
using CoreModels.Tools;
|
|
|
|
|
using System;
|
2022-03-20 10:10:44 +04:00
|
|
|
|
using ToolsModule.ManagmentEntity;
|
2022-03-18 21:34:16 +04:00
|
|
|
|
|
|
|
|
|
namespace CoreModels.ModelsDepartment
|
|
|
|
|
{
|
|
|
|
|
[EntityDescription("EducationDirection", "Направление обучения кафедры")]
|
|
|
|
|
[EntityDependency("Lecturer", "LecturerId", "Преподаватель, руководитель напарвления")]
|
|
|
|
|
public interface IEducationDirectionModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Cipher { get; }
|
|
|
|
|
|
|
|
|
|
string ShortName { get; }
|
|
|
|
|
|
|
|
|
|
string Title { get; }
|
|
|
|
|
|
|
|
|
|
string Profile { get; }
|
|
|
|
|
|
|
|
|
|
EducationDirectionQualification Qualification { get; }
|
|
|
|
|
|
|
|
|
|
Guid LecturerId { get; }
|
|
|
|
|
|
|
|
|
|
string Description { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|