описание контролов

This commit is contained in:
kotcheshir73 2021-04-03 10:29:27 +04:00
parent 89affe64e3
commit 3aaa8edb09
5 changed files with 15 additions and 0 deletions

View File

@ -7,6 +7,9 @@ using System;
namespace SecurityWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для доступа
/// </summary>
public partial class ControlAccessElement :
GenericControlEntityElement<AccessGetBindingModel, AccessSetBindingModel, AccessListViewModel, AccessViewModel, AccessBusinessLogic>,
IGenericControlEntityElement

View File

@ -7,6 +7,9 @@ using System;
namespace SecurityWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для настройки среды
/// </summary>
public partial class ControlEnviromentSettingElement :
GenericControlEntityElement<EnviromentSettingGetBindingModel, EnviromentSettingSetBindingModel, EnviromentSettingListViewModel, EnviromentSettingViewModel, EnviromentSettingBusinessLogic>,
IGenericControlEntityElement

View File

@ -7,6 +7,9 @@ using System;
namespace SecurityWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для роли
/// </summary>
public partial class ControlRoleElement :
GenericControlEntityElement<RoleGetBindingModel, RoleSetBindingModel, RoleListViewModel, RoleViewModel, RoleBusinessLogic>,
IGenericControlEntityElement

View File

@ -7,6 +7,9 @@ using System;
namespace SecurityWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для сотрудника
/// </summary>
public partial class ControlUserElement :
GenericControlEntityElement<UserGetBindingModel, UserSetBindingModel, UserListViewModel, UserViewModel, UserBusinessLogic>,
IGenericControlEntityElement

View File

@ -7,6 +7,9 @@ using System;
namespace SecurityWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для связи сотрудника с ролью
/// </summary>
public partial class ControlUserRoleElement :
GenericControlEntityElement<UserRoleGetBindingModel, UserRoleSetBindingModel, UserRoleListViewModel, UserRoleViewModel, UserRoleBusinessLogic>,
IGenericControlEntityElement