| 1234567891011121314 |
- using System.Threading.Tasks;
- using WeApp.BaseSystem.Functions.Dto;
- using IwbZero.AppServiceBase;
- namespace WeApp.BaseSystem.Functions
- {
- public interface IFunctionsAppService : IIwbZeroAsyncCrudAppService<FunctionDto, int, IwbPagedRequestDto, FunctionCreateDto, FunctionUpdateDto>
- {
- Task MoveUp(MoveUpFunctionDto input);
- Task MoveDown(MoveDownFunctionDto input);
- Task Refresh();
- }
- }
|