DepartmentProject/DepartmentPortal/Security/SecurityWindowsDesktop/Controls/ControlRoleElement.cs
kotcheshir73 e8836c8806 куча наработко по выводу элемента и списка
правки по сущностям безоапсности
2021-04-01 21:30:29 +04:00

24 lines
760 B
C#

using DesktopTools.Controls;
using DesktopTools.Interfaces;
using SecurityBusinessLogic.BindingModels;
using SecurityBusinessLogic.BusinessLogics;
using SecurityBusinessLogic.ViewModels;
using System;
namespace SecurityWindowsDesktop.Controls
{
public partial class ControlRoleElement :
GenericControlEntityElement<RoleGetBindingModel, RoleSetBindingModel, RoleListViewModel, RoleViewModel, RoleBusinessLogic>,
IGenericControlEntityElement
{
public ControlRoleElement()
{
InitializeComponent();
Title = "Роли";
ControlId = new Guid("a905bccb-048f-4249-8665-6e4bd06fa391");
_genericControlViewEntityElement = this;
}
public IControl GetInstanceGenericControl() => new ControlRoleElement() { ControlId = Guid.NewGuid() };
}
}