using System.Collections.Generic; using System.Threading.Tasks; using System.Web.Mvc; using ShwasherSys.BaseSysInfo.Functions.Dto; using IwbZero.AppServiceBase; namespace ShwasherSys.BaseSysInfo.Functions { public interface IFunctionsAppService : IIwbAsyncCrudAppService { Task GetFunByPermissionName(string name); Task> GetFunctionSelect(); Task GetFunctionSelectStr(); Task MoveUp(MoveUpFunctionDto input); Task MoveDown(MoveDownFunctionDto input); Task Refresh(); } }