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("AcademicPlan", "Учебный план кафедры (на каждый учебный год новый план)")]
|
|
|
|
|
[EntityDependency("EducationDirection", "EducationDirectionId", "Направление, к которму относится учебный план")]
|
|
|
|
|
public interface IAcademicPlanModel : IId
|
|
|
|
|
{
|
|
|
|
|
Guid? EducationDirectionId { get; }
|
|
|
|
|
|
|
|
|
|
int YearEntrance { get; }
|
|
|
|
|
|
|
|
|
|
int YearFinish { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|