22 lines
531 B
C#
22 lines
531 B
C#
using ToolsDesktop.Models;
|
||
|
||
namespace ToolsDesktop.Interfaces
|
||
{
|
||
/// <summary>
|
||
/// Работа с generic-контролом элемента
|
||
/// </summary>
|
||
public interface IGenericControlEntityElement
|
||
{
|
||
/// <summary>
|
||
/// Новый экземпляр контрола
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
IControl GetInstanceGenericControl();
|
||
|
||
/// <summary>
|
||
/// Получение настроек
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
ControlViewEntityElementConfiguration GetConfigControl();
|
||
}
|
||
} |