84 lines
4.0 KiB
C#
84 lines
4.0 KiB
C#
using ModuleTools.Attributes;
|
||
using ModuleTools.Enums;
|
||
using ModuleTools.Extensions;
|
||
using ModuleTools.ViewModels;
|
||
using System;
|
||
|
||
namespace DepartmentBusinessLogic.ViewModels
|
||
{
|
||
/// <summary>
|
||
/// Список сотрудников
|
||
/// </summary>
|
||
public class EmployeeListViewModel : ListViewModel<EmployeeViewModel> { }
|
||
|
||
/// <summary>
|
||
/// Элемент сотрудник
|
||
/// </summary>
|
||
[ViewModelControlElementClass(HaveDependenceEntities = true, Width = 800, Height = 700)]
|
||
[ViewModelControlElementDependenceEntity(Title = "Должности", Order = 1, ParentPropertyName = "EmployeeId",
|
||
ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlEmployeeEmployeePostList, DepartmentWindowsDesktop")]
|
||
[ViewModelControlElementDependenceEntity(Title = "Аудитории", Order = 1, ParentPropertyName = "EmployeeId",
|
||
ControlTypeObject = "DepartmentWindowsDesktop.EntityControls.ControlClassroomList, DepartmentWindowsDesktop")]
|
||
public class EmployeeViewModel : ElementViewModel
|
||
{
|
||
[ViewModelControlElementProperty("Пользователь", ControlType.ControlGuid, MustHaveValue = true, ReadOnly = false, ControlTypeObject = "SecurityWindowsDesktop.EntityControls.ControlUserList, SecurityWindowsDesktop")]
|
||
[MapConfiguration("UserId")]
|
||
public Guid UserId { get; set; }
|
||
|
||
[ViewModelControlListProperty("Фамилия")]
|
||
[ViewModelControlElementProperty("Фамилия", ControlType.ControlString, MustHaveValue = true)]
|
||
[MapConfiguration("LastName")]
|
||
public string LastName { get; set; }
|
||
|
||
[ViewModelControlListProperty("Имя")]
|
||
[ViewModelControlElementProperty("Имя", ControlType.ControlString, MustHaveValue = true)]
|
||
[MapConfiguration("FirstName")]
|
||
public string FirstName { get; set; }
|
||
|
||
[ViewModelControlListProperty("Отчество")]
|
||
[ViewModelControlElementProperty("Отчество", ControlType.ControlString, MustHaveValue = true)]
|
||
[MapConfiguration("Patronymic")]
|
||
public string Patronymic { get; set; }
|
||
|
||
[ViewModelControlListProperty("Дата рожд.", 100)]
|
||
[ViewModelControlElementProperty("Дата рожд.", ControlType.ControlDateTime, MustHaveValue = true )]
|
||
[MapConfiguration("DateBirth", AllowCopyWithoutRigth = false)]
|
||
public DateTime DateBirth { get; set; }
|
||
|
||
[ViewModelControlListProperty("Адрес", 90)]
|
||
[ViewModelControlElementProperty("Адрес", ControlType.ControlString, MustHaveValue = true)]
|
||
[MapConfiguration("Address", AllowCopyWithoutRigth = false)]
|
||
public string Address { get; set; }
|
||
|
||
[ViewModelControlListProperty("Эл. почта", 90)]
|
||
[ViewModelControlElementProperty("Эл. почта", ControlType.ControlString, MustHaveValue = true)]
|
||
[MapConfiguration("Email", AllowCopyWithoutRigth = false)]
|
||
public string Email { get; set; }
|
||
|
||
[ViewModelControlListProperty("Моб. номер", 100)]
|
||
[ViewModelControlElementProperty("Моб. номер", ControlType.ControlString, MustHaveValue = true)]
|
||
[MapConfiguration("MobileNumber", AllowCopyWithoutRigth = false)]
|
||
public string MobileNumber { get; set; }
|
||
|
||
[ViewModelControlListProperty("Дом. номер", 100)]
|
||
[ViewModelControlElementProperty("Дом. номер", ControlType.ControlString)]
|
||
[MapConfiguration("HomeNumber", AllowCopyWithoutRigth = false)]
|
||
public string HomeNumber { get; set; }
|
||
|
||
[ViewModelControlElementProperty("Описание", ControlType.ControlText)]
|
||
[MapConfiguration("Description")]
|
||
public string Description { get; set; }
|
||
|
||
[ViewModelControlElementProperty("Фото", ControlType.ControlImage, Width = 200, Height = 200)]
|
||
[MapConfiguration("Photo")]
|
||
public byte[] Photo { get; set; }
|
||
|
||
[ViewModelControlListProperty("Гр. эл.без.", 90)]
|
||
[ViewModelControlElementProperty("Группа эл.безоп", ControlType.ControlString, MustHaveValue = true)]
|
||
[MapConfiguration("GroupElectricalSafety")]
|
||
public string GroupElectricalSafety { get; set; }
|
||
|
||
public override string ToString() =>
|
||
$"{LastName}{(FirstName.IsNotEmpty() ? $" {FirstName[0]}." : string.Empty)}{(Patronymic.IsNotEmpty() ? $"{Patronymic[0]}." : string.Empty)}";
|
||
}
|
||
} |