32 lines
1.4 KiB
C#
32 lines
1.4 KiB
C#
using ModuleTools.Attributes;
|
|
using ModuleTools.Enums;
|
|
using ModuleTools.ViewModels;
|
|
|
|
namespace DepartmentBusinessLogic.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// Список должностей преподавателей
|
|
/// </summary>
|
|
public class LecturerAcademicRankListViewModel : ListViewModel<LecturerAcademicRankViewModel> { }
|
|
|
|
/// <summary>
|
|
/// Элемент должности преподавателей
|
|
/// </summary>
|
|
[ViewModelControlElementClass(HaveDependenceEntities = true, Width = 800, Height = 500)]
|
|
[ViewModelControlElementDependenceEntity(Title = "Преподаватели", Order = 1, ParentPropertyName = "LecturerPostId",
|
|
ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlLecturerLecturerAcademicRankList, DepartmentWindowsDesktop")]
|
|
public class LecturerAcademicRankViewModel : ElementViewModel
|
|
{
|
|
[ViewModelControlListProperty("Ученая степень")]
|
|
[ViewModelControlElementProperty("Ученая степень", ControlType.ControlString, MustHaveValue = true)]
|
|
[MapConfiguration("LecturerAcademicRankName")]
|
|
public string LecturerAcademicRankName { get; set; }
|
|
|
|
[ViewModelControlListProperty("Порядок", ColumnWidth = 100)]
|
|
[ViewModelControlElementProperty("Порядок", ControlType.ControlInt, MustHaveValue = true)]
|
|
[MapConfiguration("Order")]
|
|
public int Order { get; set; }
|
|
|
|
public override string ToString() => LecturerAcademicRankName;
|
|
}
|
|
} |