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