2022-03-18 22:24:10 +04:00
|
|
|
|
using CoreModels.Enums.Department;
|
|
|
|
|
using CoreModels.ModelsDepartment;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Attributes;
|
|
|
|
|
using ToolsModule.Enums;
|
|
|
|
|
using ToolsModule.ViewModels;
|
2021-04-13 12:52:45 +04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.ViewModels
|
|
|
|
|
{
|
2022-03-18 22:24:10 +04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Список приказов
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class OrderStudentRecordListViewModel : ListViewModel<OrderStudentRecordViewModel> { }
|
2021-04-13 12:52:45 +04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Элемент приказа
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ViewModelControlElementClass(HaveDependenceEntities = false)]
|
2022-03-18 22:24:10 +04:00
|
|
|
|
public class OrderStudentRecordViewModel : ElementViewModel, IOrderStudentRecordModel
|
2021-04-13 12:52:45 +04:00
|
|
|
|
{
|
|
|
|
|
[ViewModelControlElementProperty("Приказ", ControlType.ControlGuid, MustHaveValue = true, ReadOnly = false, ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlOrderList, DepartmentWindowsDesktop")]
|
|
|
|
|
public Guid OrderId { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("Студент", ControlType.ControlGuid, MustHaveValue = true, ReadOnly = false, ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlStudentList, DepartmentWindowsDesktop")]
|
|
|
|
|
public Guid StudentId { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("Из группы", ControlType.ControlGuid, MustHaveValue = false, ReadOnly = false, ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlStudentGroupList, DepartmentWindowsDesktop")]
|
2021-08-20 18:28:34 +04:00
|
|
|
|
public Guid? StudentGroupFromId { get; set; }
|
2021-04-13 12:52:45 +04:00
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("В группу", ControlType.ControlGuid, MustHaveValue = false, ReadOnly = false, ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlStudentGroupList, DepartmentWindowsDesktop")]
|
2021-08-20 18:28:34 +04:00
|
|
|
|
public Guid? StudentGroupToId { get; set; }
|
2021-04-13 12:52:45 +04:00
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("Тип приказа", ControlType.ControlEnum, MustHaveValue = true)]
|
|
|
|
|
public OrderStudentMoveType OrderStudentMoveType { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlListProperty("Тип приказа")]
|
|
|
|
|
public string OrderStudentMoveTypeTitle => OrderStudentMoveType.ToString("G");
|
|
|
|
|
|
2022-03-18 22:24:10 +04:00
|
|
|
|
[ViewModelControlElementProperty("Тип приказа", ControlType.ControlText, Height = 200)]
|
|
|
|
|
public string Info { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string ToString() => $"";
|
2021-04-13 12:52:45 +04:00
|
|
|
|
}
|
|
|
|
|
}
|