irc-netcore-api/IRaCIS.Core.Application/Service/Management/Interface/IMenuService.cs

13 lines
458 B
C#

using IRaCIS.Application.Contracts;
namespace IRaCIS.Core.Application.Service
{
public interface IMenuService
{
Task<IResponseOutput> AddOrUpdateMenu(MenuCommand menuAddOrUpdateModel);
Task<IResponseOutput> DeleteMenu(Guid menuId);
Task<List<MenuDTO>> GetMenuList(MenuQueyDTO menuQueyDTO);
Task<List<MenuTreeNode>> GetMenuTree();
Task<List<MenuTreeNodeSelect>> GetUserTypeMenuTree(Guid userTypeId);
}
}