DepartmentProject/DepartmentPortal/Common/CoreModels/ModelsDepartment/IAcademicPlanModel.cs

17 lines
589 B
C#
Raw Normal View History

using CoreModels.Tools;
using System;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
namespace CoreModels.ModelsDepartment
{
[EntityDescription("AcademicPlan", "Учебный план кафедры (на каждый учебный год новый план)")]
[EntityDependency("EducationDirection", "EducationDirectionId", "Направление, к которму относится учебный план")]
public interface IAcademicPlanModel : IId
{
Guid? EducationDirectionId { get; }
int YearEntrance { get; }
int YearFinish { get; }
}
}