using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_DTO.System; using WIDESEA_Model.Models; namespace WIDESEA_IServices { public interface ISys_MenuService : IService { object GetCurrentMenuActionList(); object GetCurrentMenuPhoneActionList(); List GetUserMenuList(int roleId); List GetActions(int menuId, List menuActions, List permissions, int roleId); object GetMenu(); object GetTreeItem(int menuId); WebResponseContent Save(Sys_Menu menu); } }