using DepartmentBusinessLogic.BindingModels; using DepartmentBusinessLogic.BusinessLogics; using DepartmentBusinessLogic.ViewModels; using DesktopTools.Controls; using DesktopTools.Interfaces; using System; namespace DepartmentWindowsDesktop.EntityControls { /// /// Реализация контрола для направления обучения /// public partial class ControlEducationDirectionElement : GenericControlEntityElement, IGenericControlEntityElement { public ControlEducationDirectionElement() { InitializeComponent(); Title = "Нправление обучения"; ControlId = new Guid("77cf42dc-e13d-4c4f-b6b2-509f1f8ae2a6"); _genericControlViewEntityElement = this; } public IControl GetInstanceGenericControl() => new ControlEducationDirectionElement() { ControlId = Guid.NewGuid() }; } }