2021-04-06 22:07:11 +04:00
|
|
|
|
using ModuleTools.Attributes;
|
|
|
|
|
using ModuleTools.Enums;
|
|
|
|
|
using ModuleTools.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.ViewModels
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Список учбеных планов
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class AcademicPlanListViewModel : ListViewModel<AcademicPlanViewModel> { }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Элемент учебного плана
|
|
|
|
|
/// </summary>
|
2021-04-11 20:49:26 +04:00
|
|
|
|
[ViewModelControlElementClass(HaveDependenceEntities = true, Width = 1200, Height = 800)]
|
2021-04-06 22:07:11 +04:00
|
|
|
|
[ViewModelControlElementDependenceEntity(Title = "Записи плана", Order = 1, ParentPropertyName = "AcademicPlanId",
|
|
|
|
|
ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlAcademicPlanRecordList, DepartmentWindowsDesktop")]
|
|
|
|
|
public class AcademicPlanViewModel : ElementViewModel
|
|
|
|
|
{
|
2021-04-11 20:49:26 +04:00
|
|
|
|
[ViewModelControlElementProperty("Направление", ControlType.ControlGuid, MustHaveValue = false, ReadOnly = false, ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlEducationDirectionList, DepartmentWindowsDesktop")]
|
2021-04-06 22:07:11 +04:00
|
|
|
|
[MapConfiguration("EducationDirectionId")]
|
2021-04-11 20:49:26 +04:00
|
|
|
|
public Guid? EducationDirectionId { get; set; }
|
2021-04-06 22:07:11 +04:00
|
|
|
|
|
|
|
|
|
[ViewModelControlListProperty("Направление")]
|
|
|
|
|
[MapConfiguration("EducationDirection.Cipher", IsDifficle = true)]
|
|
|
|
|
public string EducationDirectionCipher { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlListProperty("Дата начала", ColumnWidth = 120)]
|
2021-04-11 20:49:26 +04:00
|
|
|
|
[ViewModelControlElementProperty("Дата начала", ControlType.ControlInt, MustHaveValue = true)]
|
2021-04-06 22:07:11 +04:00
|
|
|
|
[MapConfiguration("YearEntrance")]
|
|
|
|
|
public int YearEntrance { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlListProperty("Дата окончания", ColumnWidth = 120)]
|
2021-04-11 20:49:26 +04:00
|
|
|
|
[ViewModelControlElementProperty("Дата окончания", ControlType.ControlInt, MustHaveValue = true)]
|
2021-04-06 22:07:11 +04:00
|
|
|
|
[MapConfiguration("YearFinish")]
|
|
|
|
|
public int YearFinish { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string ToString() =>$"{EducationDirectionCipher}: {YearEntrance}-{YearFinish}";
|
|
|
|
|
}
|
|
|
|
|
}
|