DepartmentProject/DepartmentPortal/Department/DepartmentWindowsDesktop/EntityControls/Post/ControlPostList.cs

42 lines
1.3 KiB
C#
Raw Normal View History

2021-04-03 11:41:02 +04:00
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
2022-03-18 22:48:14 +04:00
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
2021-04-03 11:41:02 +04:00
using System;
using System.Collections.Generic;
namespace DepartmentWindowsDesktop.EntityControls
{
/// <summary>
/// Реализация контрола для списка должностей
2021-04-03 11:41:02 +04:00
/// </summary>
public partial class ControlPostList :
GenericControlEntityList<PostGetBindingModel, PostSetBindingModel, PostListViewModel, PostViewModel, PostBusinessLogic>,
IGenericControlEntityList
2021-04-03 11:41:02 +04:00
{
public ControlPostList()
2021-04-03 11:41:02 +04:00
{
InitializeComponent();
Title = "Должности";
ControlId = new Guid("643f2ec7-9e77-4b8a-8074-5a7915fa16c0");
AccessOperation = AccessOperation.Должности;
ControlViewEntityElement = new ControlPostElement();
2021-04-03 11:41:02 +04:00
_genericControlViewEntityList = this;
}
public IControl GetInstanceGenericControl() => new ControlPostList() { ControlId = Guid.NewGuid() };
2021-04-03 11:41:02 +04:00
public ControlViewEntityListConfiguration GetConfigControl() => new()
{
PaginationOn = false,
HideToolStripButton = new List<ToolStripButtonListNames>
{
ToolStripButtonListNames.toolStripButtonSearch
}
};
}
}