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

24 lines
745 B
C#
Raw Normal View History

using CoreModels.Tools;
using System;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
using ToolsModule.ManagmentSecurity;
namespace CoreModels.ModelsDepartment
{
[EntityDescription("LecturerPost", "Связь преподавателя и должность кафедры")]
[EntityDependency("Post", "PostId", "К какой должности относится преподаватель")]
[EntityDependency("Lecturer", "LecturerId", "К какой должности относится преподаватель")]
public interface ILecturerPostModel : IId
{
[CheckRigthForMap]
Guid LecturerId { get; }
Guid PostId { get; }
decimal Rate { get; }
bool IsInternalCombination { get; }
bool IsExternalCombination { get; }
}
}