14 lines
341 B
C#
14 lines
341 B
C#
|
namespace DesktopTools.Interfaces
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Работа с generic-контролом элемента
|
|||
|
/// </summary>
|
|||
|
public interface IGenericControlEntityElement
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Новый экземпляр контрола
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
IControl GetInstanceGenericControl();
|
|||
|
}
|
|||
|
}
|