1
This commit is contained in:
27
iMES.System/IServices/System/Partial/ISys_MenuService.cs
Normal file
27
iMES.System/IServices/System/Partial/ISys_MenuService.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using iMES.Core.Utilities;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.System.IServices
|
||||
{
|
||||
public partial interface ISys_MenuService
|
||||
{
|
||||
Task<object> GetMenu();
|
||||
List<Sys_Menu> GetCurrentMenuList();
|
||||
|
||||
List<Sys_Menu> GetUserMenuList(int roleId);
|
||||
|
||||
Task<object> GetCurrentMenuActionList();
|
||||
|
||||
Task<object> GetMenuActionList(int roleId);
|
||||
Task<WebResponseContent> Save(Sys_Menu menu);
|
||||
|
||||
Task<WebResponseContent> DelMenu(int menuId);
|
||||
|
||||
|
||||
Task<object> GetTreeItem(int menuId);
|
||||
Task<object> GetMenuItem(int menuId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user