using DepartmentContract.BindingModels; using DepartmentContract.Logics.IGenericEntityLogic; using DepartmentContract.ViewModels; using System; using ToolsDesktop.Controls; using ToolsDesktop.Interfaces; using ToolsDesktop.Models; namespace DepartmentWindowsDesktop.EntityControls { /// /// Реализация контрола для блока дисциплин /// public partial class ControlDisciplineBlockElement : GenericControlEntityElement, IGenericControlEntityElement { public ControlDisciplineBlockElement() { InitializeComponent(); Title = "Блок дисципилн"; ControlId = new Guid("8e2032c5-1412-4ccd-855c-f0b0836e3599"); _genericControlViewEntityElement = this; } public IControl GetInstanceGenericControl() => new ControlDisciplineBlockElement() { ControlId = Guid.NewGuid() }; public ControlViewEntityElementConfiguration GetConfigControl() => new(); } }