DepartmentProject/DepartmentPortal/Common/ToolsDesktop/Interfaces/IGenericControlEntityElement.cs

22 lines
531 B
C#
Raw Normal View History

2022-03-18 22:48:14 +04:00
using ToolsDesktop.Models;
2022-03-18 22:48:14 +04:00
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Работа с generic-контролом элемента
/// </summary>
public interface IGenericControlEntityElement
{
/// <summary>
/// Новый экземпляр контрола
/// </summary>
/// <returns></returns>
IControl GetInstanceGenericControl();
/// <summary>
/// Получение настроек
/// </summary>
/// <returns></returns>
ControlViewEntityElementConfiguration GetConfigControl();
}
}