using DesktopTools.Controls; using DesktopTools.Interfaces; using DesktopTools.Models; using SecurityBusinessLogic.BindingModels; using SecurityBusinessLogic.BusinessLogics; using SecurityBusinessLogic.ViewModels; using System; namespace SecurityWindowsDesktop.EntityControls { /// /// Реализация контрола для роли /// public partial class ControlRoleElement : GenericControlEntityElement, IGenericControlEntityElement { public ControlRoleElement() { InitializeComponent(); Title = "Роли"; ControlId = new Guid("a905bccb-048f-4249-8665-6e4bd06fa391"); _genericControlViewEntityElement = this; } public IControl GetInstanceGenericControl() => new ControlRoleElement() { ControlId = Guid.NewGuid() }; public ControlViewEntityElementConfiguration GetConfigControl() => new(); } }