2021-04-03 13:41:19 +04:00
|
|
|
|
using DepartmentBusinessLogic.Enums;
|
|
|
|
|
using ModuleTools.Attributes;
|
|
|
|
|
using ModuleTools.Enums;
|
|
|
|
|
using ModuleTools.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.ViewModels
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Список ролей
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ClassroomListViewModel : ListViewModel<ClassroomViewModel> { }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Элемент ролей
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ViewModelControlElementClass()]
|
|
|
|
|
public class ClassroomViewModel : ElementViewModel
|
|
|
|
|
{
|
2021-04-03 13:50:58 +04:00
|
|
|
|
[ViewModelControlListProperty("Номер", ColumnWidth = 80)]
|
2021-04-03 13:41:19 +04:00
|
|
|
|
[ViewModelControlElementProperty("Номер аудитории", ControlType.ControlString, MustHaveValue = true)]
|
|
|
|
|
[MapConfiguration("Number")]
|
|
|
|
|
public string Number { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlListProperty("Название")]
|
|
|
|
|
[ViewModelControlElementProperty("Название", ControlType.ControlString)]
|
|
|
|
|
[MapConfiguration("Title")]
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("Сотрудник", ControlType.ControlGuid, MustHaveValue = true, ReadOnly = false, ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlEmployeeList, DepartmentWindowsDesktop")]
|
|
|
|
|
[MapConfiguration("EmployeeId")]
|
|
|
|
|
public Guid EmployeeId { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlListProperty("Сотрудник")]
|
|
|
|
|
[MapConfiguration("Employee.LastName", IsDifficle = true)]
|
|
|
|
|
public string EmployeeName { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("Тип", ControlType.ControlEnum, MustHaveValue = true)]
|
|
|
|
|
[MapConfiguration("ClassroomType")]
|
|
|
|
|
public ClassroomType ClassroomType { get; set; }
|
|
|
|
|
|
2021-04-03 13:50:58 +04:00
|
|
|
|
[ViewModelControlListProperty("Тип", ColumnWidth = 120)]
|
2021-04-03 13:41:19 +04:00
|
|
|
|
public string ClassroomTypeTitle => ClassroomType.ToString("G");
|
|
|
|
|
|
2021-04-03 13:50:58 +04:00
|
|
|
|
[ViewModelControlListProperty("Площадь", ColumnWidth = 90)]
|
2021-04-03 13:41:19 +04:00
|
|
|
|
[ViewModelControlElementProperty("Площадь", ControlType.ControlDecimal, MustHaveValue = true)]
|
|
|
|
|
[MapConfiguration("Square")]
|
|
|
|
|
public decimal Square { get; set; }
|
|
|
|
|
|
2021-04-03 13:50:58 +04:00
|
|
|
|
[ViewModelControlListProperty("Кол-во мест", ColumnWidth = 100)]
|
2021-04-03 13:41:19 +04:00
|
|
|
|
[ViewModelControlElementProperty("Кол-во мест", ControlType.ControlInt, MustHaveValue = true)]
|
|
|
|
|
[MapConfiguration("Capacity")]
|
|
|
|
|
public int Capacity { get; set; }
|
|
|
|
|
|
2021-04-03 14:27:30 +04:00
|
|
|
|
[ViewModelControlListProperty("Код безоп.", ColumnWidth = 100)]
|
2021-04-03 13:41:19 +04:00
|
|
|
|
[ViewModelControlElementProperty("Код безоп.", ControlType.ControlString, MustHaveValue = true)]
|
|
|
|
|
[MapConfiguration("SecurityCode")]
|
|
|
|
|
public string SecurityCode { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("Есть проектор", ControlType.ControlBool, MustHaveValue = true)]
|
|
|
|
|
[MapConfiguration("HaveProjector")]
|
|
|
|
|
public bool HaveProjector { get; set; }
|
|
|
|
|
|
2021-04-03 14:27:30 +04:00
|
|
|
|
[ViewModelControlListProperty("Есть проектор", ColumnWidth = 80)]
|
|
|
|
|
public string IsHaveProjector => HaveProjector ? "Да" : "Нет";
|
|
|
|
|
|
2021-04-03 13:41:19 +04:00
|
|
|
|
[ViewModelControlElementProperty("Описание", ControlType.ControlText)]
|
|
|
|
|
[MapConfiguration("Description")]
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
|
|
[ViewModelControlElementProperty("Фото", ControlType.ControlImage, Width = 200, Height = 200)]
|
|
|
|
|
[MapConfiguration("Photo")]
|
|
|
|
|
public byte[] Photo { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string ToString() => Number;
|
|
|
|
|
}
|
|
|
|
|
}
|