DepartmentProject/DepartmentPortal/Security/SecurityWindowsDesktop/EntityControls/EnviromentSetting/ControlEnviromentSettingElement.cs

30 lines
1.1 KiB
C#
Raw Normal View History

using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
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 ControlEnviromentSettingElement :
GenericControlEntityElement<EnviromentSettingGetBindingModel, EnviromentSettingSetBindingModel, EnviromentSettingListViewModel, EnviromentSettingViewModel, EnviromentSettingBusinessLogic>,
IGenericControlEntityElement
{
public ControlEnviromentSettingElement()
{
InitializeComponent();
Title = "Настройки Среды";
ControlId = new Guid("9888d5c5-14d4-4528-a544-f0ede22aaad3");
_genericControlViewEntityElement = this;
}
public IControl GetInstanceGenericControl() => new ControlEnviromentSettingElement() { ControlId = Guid.NewGuid() };
public ControlViewEntityElementConfiguration GetConfigControl() => new();
}
}