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 ControlOrderSyncHistoryElement : GenericControlEntityElement, IGenericControlEntityElement { public ControlOrderSyncHistoryElement() { InitializeComponent(); Title = "История синхронизации приказа"; ControlId = new Guid("34368ebc-f657-45b3-93c8-4fba732a1457"); _genericControlViewEntityElement = this; } public IControl GetInstanceGenericControl() => new ControlOrderSyncHistoryElement() { ControlId = Guid.NewGuid() }; public ControlViewEntityElementConfiguration GetConfigControl() => new(); } }