2022-03-18 21:34:16 +04:00
|
|
|
|
using CoreModels.Tools;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Attributes;
|
2022-03-18 21:34:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace CoreModels.ModelsDepartment
|
|
|
|
|
{
|
|
|
|
|
[EntityDescription("Discipline", "Дисципилна кафедры")]
|
|
|
|
|
[EntityDependency("DisciplineBlock", "DisciplineBlockId", "Блок дисцпилн, к которому относится дисциплина")]
|
|
|
|
|
public interface IDisciplineModel : IId
|
|
|
|
|
{
|
|
|
|
|
Guid DisciplineBlockId { get; }
|
|
|
|
|
|
|
|
|
|
string DisciplineName { get; }
|
|
|
|
|
|
|
|
|
|
string DisciplineShortName { get; }
|
|
|
|
|
|
|
|
|
|
string Description { get; }
|
|
|
|
|
|
|
|
|
|
string DisciplineBlueAsteriskName { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|