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