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

27 lines
884 B
C#
Raw Normal View History

using DesktopTools.Controls;
using DesktopTools.Interfaces;
using SecurityBusinessLogic.BindingModels;
using SecurityBusinessLogic.BusinessLogics;
using SecurityBusinessLogic.ViewModels;
using System;
2021-04-02 15:53:15 +04:00
namespace SecurityWindowsDesktop.EntityControls
{
2021-04-03 10:29:27 +04:00
/// <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() };
}
}