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

23 lines
990 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;
using System.Collections.Generic;
namespace DesktopTools.Interfaces
{
/// <summary>
/// Интерфейс для регистрации контролов для десктопного приложения
/// </summary>
public interface IWindowDesktopExtension
{
/// <summary>
/// Получение списка контролов модуля для работсы с сущностями, доступных для работы по авторизованному пользователю
/// </summary>
/// <returns></returns>
List<WindowDesktopExtensionControlModel> GetListControlEntityList();
/// <summary>
/// Получение списка контролов модуля для особой работы, доступных для работы по авторизованному пользователю
/// </summary>
/// <returns></returns>
List<WindowDesktopExtensionControlModel> GetListControlSpecialList();
}
}