42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
using CoreModels.Enums.Department;
|
|
using CoreModels.Tools;
|
|
using System;
|
|
using ToolsModule.ManagmentEntity;
|
|
|
|
namespace CoreModels.ModelsDepartment
|
|
{
|
|
[EntityDescription("StudentMarkPassedDiscipline", "Оценка студента по сданной дисципилне")]
|
|
[EntityDependency("Discipline", "DisciplineId", "Дисциплина, по которой выставлена оценка")]
|
|
[EntityDependency("Student", "StudentId", "Студент, сдающий дисциплину")]
|
|
public interface IStudentMarkPassedDisciplineModel : IId
|
|
{
|
|
Guid StudentId { get; }
|
|
|
|
Guid DisciplineId { get; }
|
|
|
|
/// <summary>
|
|
/// Семестр, в котором сдавался экзамен/зачет по дисциплине
|
|
/// </summary>
|
|
Semester Semester { get; }
|
|
|
|
/// <summary>
|
|
/// Результат сдачи
|
|
/// </summary>
|
|
MarkDisciplinePassedType Mark { get; }
|
|
|
|
/// <summary>
|
|
/// Дата сдачи
|
|
/// </summary>
|
|
DateTime DateAffixing { get; }
|
|
|
|
/// <summary>
|
|
/// Является повышением оценки
|
|
/// </summary>
|
|
bool IsIncreaseMark { get; }
|
|
|
|
/// <summary>
|
|
/// Является сдачей по направлению
|
|
/// </summary>
|
|
bool IsDirection { get; }
|
|
}
|
|
} |