using System.Threading.Tasks; using WePlatform.BaseSystem.Functions.Dto; using IwbZero.AppServiceBase; namespace WePlatform.BaseSystem.Functions { public interface IFunctionsAppService : IIwbZeroAsyncCrudAppService { Task MoveUp(MoveUpFunctionDto input); Task MoveDown(MoveDownFunctionDto input); Task Refresh(); } }