DepartmentProject/DepartmentPortal/Security/SecurityWindowsDesktop/EntityControls/User/ControlUserElement.cs

30 lines
988 B
C#

using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using SecurityBusinessLogic.BindingModels;
using SecurityBusinessLogic.BusinessLogics;
using SecurityBusinessLogic.ViewModels;
using System;
namespace SecurityWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для сотрудника
/// </summary>
public partial class ControlUserElement :
GenericControlEntityElement<UserGetBindingModel, UserSetBindingModel, UserListViewModel, UserViewModel, UserBusinessLogic>,
IGenericControlEntityElement
{
public ControlUserElement()
{
InitializeComponent();
Title = "Пользователь";
ControlId = new Guid("5e731873-1a7e-44f5-a9b0-9529fbb01fee");
_genericControlViewEntityElement = this;
}
public IControl GetInstanceGenericControl() => new ControlUserElement() { ControlId = Guid.NewGuid() };
public ControlViewEntityElementConfiguration GetConfigControl() => new();
}
}