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

22 lines
531 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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