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