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;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Enums;
|
2021-04-03 11:41:02 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace DepartmentWindowsDesktop.EntityControls
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-04-05 12:25:10 +04:00
|
|
|
|
/// Реализация контрола для списка должностей
|
2021-04-03 11:41:02 +04:00
|
|
|
|
/// </summary>
|
2021-04-05 12:25:10 +04:00
|
|
|
|
public partial class ControlPostList :
|
|
|
|
|
GenericControlEntityList<PostGetBindingModel, PostSetBindingModel, PostListViewModel, PostViewModel, PostBusinessLogic>,
|
2021-04-04 21:09:39 +04:00
|
|
|
|
IGenericControlEntityList
|
2021-04-03 11:41:02 +04:00
|
|
|
|
{
|
2021-04-05 12:25:10 +04:00
|
|
|
|
public ControlPostList()
|
2021-04-03 11:41:02 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2021-04-05 12:25:10 +04:00
|
|
|
|
Title = "Должности";
|
|
|
|
|
ControlId = new Guid("643f2ec7-9e77-4b8a-8074-5a7915fa16c0");
|
|
|
|
|
AccessOperation = AccessOperation.Должности;
|
|
|
|
|
ControlViewEntityElement = new ControlPostElement();
|
2021-04-03 11:41:02 +04:00
|
|
|
|
_genericControlViewEntityList = this;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 12:25:10 +04:00
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|