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 ControlAccessElement :
GenericControlEntityElement,
IGenericControlEntityElement
{
public ControlAccessElement()
{
InitializeComponent();
Title = "Доступы";
ControlId = new Guid("fbe22d1d-e7b3-49f9-b013-93950aa0281b");
_genericControlViewEntityElement = this;
}
public IControl GetInstanceGenericControl() => new ControlAccessElement() { ControlId = Guid.NewGuid() };
public ControlViewEntityElementConfiguration GetConfigControl() => new();
}
}