47 lines
1.8 KiB
C#
47 lines
1.8 KiB
C#
|
using DepartmentBusinessLogic.BindingModels;
|
|||
|
using DepartmentBusinessLogic.BusinessLogics;
|
|||
|
using DepartmentBusinessLogic.ViewModels;
|
|||
|
using DesktopTools.Controls;
|
|||
|
using DesktopTools.Enums;
|
|||
|
using DesktopTools.Interfaces;
|
|||
|
using DesktopTools.Models;
|
|||
|
using ModuleTools.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace DepartmentWindowsDesktop.EntityControls
|
|||
|
{
|
|||
|
public partial class ControlLecturerLecturerAcademicDegreeList :
|
|||
|
GenericControlEntityList<LecturerGetBindingModel, LecturerSetBindingModel, LecturerListViewModel, LecturerViewModel, LecturerBusinessLogic>,
|
|||
|
IGenericControlEntityList<LecturerListViewModel, LecturerViewModel>
|
|||
|
{
|
|||
|
public ControlLecturerLecturerAcademicDegreeList()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
Title = "Преподаватели";
|
|||
|
ControlId = new Guid("9ce105ee-3c10-44ff-ba51-9f8c9cef831a");
|
|||
|
AccessOperation = AccessOperation.Преподаватели;
|
|||
|
ControlViewEntityElement = new ControlEmployeeElement();
|
|||
|
_genericControlViewEntityList = this;
|
|||
|
}
|
|||
|
|
|||
|
public IControl GetInstanceGenericControl() => new ControlLecturerLecturerAcademicDegreeList() { ControlId = Guid.NewGuid() };
|
|||
|
|
|||
|
public ControlViewEntityListConfiguration GetConfigControl() => new()
|
|||
|
{
|
|||
|
PaginationOn = false,
|
|||
|
HideToolStripButton = new List<ToolStripButtonListNames>
|
|||
|
{
|
|||
|
ToolStripButtonListNames.toolStripButtonSearch
|
|||
|
}
|
|||
|
};
|
|||
|
|
|||
|
public LecturerListViewModel GetDataForControl() => throw new NotImplementedException();
|
|||
|
|
|||
|
public LecturerListViewModel GetDataFromParentForControl(Guid id) => _businessLogic.GetList(new LecturerGetBindingModel { LecturerAcademicDegreeId = id });
|
|||
|
|
|||
|
public LecturerListViewModel GetDataWithPageNameForControl(string key) => throw new NotImplementedException();
|
|||
|
|
|||
|
public LecturerListViewModel GetDataWithPageNumberForControl(int page, int count) => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|