30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
|
using DepartmentBusinessLogic.BindingModels;
|
|||
|
using DepartmentBusinessLogic.BusinessLogics;
|
|||
|
using DepartmentBusinessLogic.ViewModels;
|
|||
|
using DesktopTools.Controls;
|
|||
|
using DesktopTools.Interfaces;
|
|||
|
using DesktopTools.Models;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace DepartmentWindowsDesktop.EntityControls
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Реализация контрола для истории синхронизации приказов
|
|||
|
/// </summary>
|
|||
|
public partial class ControlOrderSyncHistoryElement :
|
|||
|
GenericControlEntityElement<OrderSyncHistoryGetBindingModel, OrderSyncHistorySetBindingModel, OrderSyncHistoryListViewModel, OrderSyncHistoryViewModel, OrderSyncHistoryBusinessLogic>,
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|