DepartmentProject/DepartmentPortal/Security/SecurityWindowsDesktop/EntityControls/ControlAccessElement.cs

24 lines
788 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
{
public partial class ControlAccessElement :
GenericControlEntityElement<AccessGetBindingModel, AccessSetBindingModel, AccessListViewModel, AccessViewModel, AccessBusinessLogic>,
IGenericControlEntityElement
{
public ControlAccessElement()
{
InitializeComponent();
Title = "Доступы";
ControlId = new Guid("fbe22d1d-e7b3-49f9-b013-93950aa0281b");
_genericControlViewEntityElement = this;
}
public IControl GetInstanceGenericControl() => new ControlAccessElement() { ControlId = Guid.NewGuid() };
}
}