using DepartmentBusinessLogic.BindingModels; using DepartmentBusinessLogic.BusinessLogics; using DepartmentBusinessLogic.ViewModels; using DesktopTools.Controls; using DesktopTools.Interfaces; using DesktopTools.Models; using System; namespace DepartmentWindowsDesktop.EntityControls { /// /// Реализация контрола для нормы времени /// public partial class ControlTimeNormElement : GenericControlEntityElement, IGenericControlEntityElement { public ControlTimeNormElement() { InitializeComponent(); Title = "Норма времени"; ControlId = new Guid("17e65fa1-e809-45fe-b21c-dbd2ecd53194"); _genericControlViewEntityElement = this; } public IControl GetInstanceGenericControl() => new ControlTimeNormElement() { ControlId = Guid.NewGuid() }; public ControlViewEntityElementConfiguration GetConfigControl() => new(); } }