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

22 lines
521 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 IGenericControlEntityList
{
/// <summary>
/// Новый экземпляр контрола
/// </summary>
/// <returns></returns>
IControl GetInstanceGenericControl();
/// <summary>
/// Получение настроек
/// </summary>
/// <returns></returns>
ControlViewEntityListConfiguration GetConfigControl();
}
}