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 ControlLecturerLecturerPostList : GenericControlEntityList, IGenericControlEntityList { public ControlLecturerLecturerPostList() { InitializeComponent(); Title = "Преподаватели"; ControlId = new Guid("0f85396c-f0a2-45ac-965b-49de16fed8eb"); AccessOperation = AccessOperation.Преподаватели; ControlViewEntityElement = new ControlEmployeeElement(); _genericControlViewEntityList = this; } public IControl GetInstanceGenericControl() => new ControlLecturerLecturerPostList() { ControlId = Guid.NewGuid() }; public ControlViewEntityListConfiguration GetConfigControl() => new() { PaginationOn = false, HideToolStripButton = new List { ToolStripButtonListNames.toolStripButtonSearch } }; public LecturerListViewModel GetDataForControl() => throw new NotImplementedException(); public LecturerListViewModel GetDataFromParentForControl(Guid id) => _businessLogic.GetList(new LecturerGetBindingModel { LecturerPostId = id }); public LecturerListViewModel GetDataWithPageNameForControl(string key) => throw new NotImplementedException(); public LecturerListViewModel GetDataWithPageNumberForControl(int page, int count) => throw new NotImplementedException(); } }