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

22 lines
531 B
C#
Raw Normal View History

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