DepartmentProject/DepartmentPortal/Security/SecurityWindowsDesktop/Controls/RolesControl.cs

46 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using DesktopTools.Controls;
using DesktopTools.Models;
using ModuleTools.BusinessLogics;
using ModuleTools.Enums;
using SecurityBusinessLogic.BindingModels;
using SecurityBusinessLogic.BusinessLogics;
using SecurityBusinessLogic.ViewModels;
using System;
namespace SecurityWindowsDesktop.Controls
{
public partial class RolesControl : AbstractGenericControlEntityList<RoleGetBindingModel, RoleSetBindingModel, RoleListViewModel, RoleViewModel, RoleBusinessLogic>
{
public RolesControl() : base()
{
InitializeComponent();
Title = "Роли";
ControlId = new Guid("6a33ce5c-e950-4294-9f75-2a0b35941bf7");
Order = 1;
AccessOperation = AccessOperation.Роли;
}
public override AbstractControlViewEntityList Clone() => new RolesControl() { ControlId = Guid.NewGuid() };
protected override ControlViewEntityListConfiguration GetConfig() => new()
{
PaginationOn = false
};
protected override RoleListViewModel GetData()
{
var list = _businessLogic.GetList(new RoleGetBindingModel());
return list;
}
protected override RoleListViewModel GetDataWithPageName(string key)
{
throw new NotImplementedException();
}
protected override RoleListViewModel GetDataWithPageNumber(int page, int count)
{
throw new NotImplementedException();
}
}
}