55 lines
1.8 KiB
C#
55 lines
1.8 KiB
C#
using DesktopTools.Controls;
|
||
using DesktopTools.Enums;
|
||
using DesktopTools.Interfaces;
|
||
using DesktopTools.Models;
|
||
using ModuleTools.BusinessLogics;
|
||
using ModuleTools.Enums;
|
||
using SecurityBusinessLogic.BindingModels;
|
||
using SecurityBusinessLogic.BusinessLogics;
|
||
using SecurityBusinessLogic.ViewModels;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Data;
|
||
using System.Linq;
|
||
|
||
namespace SecurityWindowsDesktop.EntityControls
|
||
{
|
||
/// <summary>
|
||
/// Реализация контрола для списка доступов
|
||
/// </summary>
|
||
public partial class ControlAccessList :
|
||
GenericControlEntityList<AccessGetBindingModel, AccessSetBindingModel, AccessListViewModel, AccessViewModel, AccessBusinessLogic>,
|
||
IGenericControlEntityList
|
||
{
|
||
private readonly RoleBusinessLogic _roleBusinessLogic;
|
||
|
||
public ControlAccessList()
|
||
{
|
||
InitializeComponent();
|
||
_roleBusinessLogic = DependencyManager.Instance.Resolve<RoleBusinessLogic>();
|
||
Title = "Доступы";
|
||
ControlId = new Guid("6eebc4c4-cb86-4368-93e0-33dbdbb7409a");
|
||
AccessOperation = AccessOperation.Доступы;
|
||
ControlViewEntityElement = new ControlAccessElement();
|
||
_genericControlViewEntityList = this;
|
||
}
|
||
|
||
public IControl GetInstanceGenericControl() => new ControlAccessList() { ControlId = Guid.NewGuid() };
|
||
|
||
public ControlViewEntityListConfiguration GetConfigControl() => new()
|
||
{
|
||
PaginationOn = true,
|
||
PageNamesForPagination = _roleBusinessLogic.GetListAsync(new RoleGetBindingModel()).Result?.List?.Select(x =>
|
||
new PageNamesForPaginationModel
|
||
{
|
||
Key = x.Id,
|
||
Value = x.RoleName
|
||
})?.ToList(),
|
||
ParentPropertyName = "RoleId",
|
||
HideToolStripButton = new List<ToolStripButtonListNames>
|
||
{
|
||
ToolStripButtonListNames.toolStripButtonSearch
|
||
}
|
||
};
|
||
}
|
||
} |