IFunctionsAppService.cs 434 B

1234567891011121314
  1. using System.Threading.Tasks;
  2. using WePlatform.BaseSystem.Functions.Dto;
  3. using IwbZero.AppServiceBase;
  4. namespace WePlatform.BaseSystem.Functions
  5. {
  6. public interface IFunctionsAppService : IIwbZeroAsyncCrudAppService<FunctionDto, int, IwbPagedRequestDto, FunctionCreateDto, FunctionUpdateDto>
  7. {
  8. Task MoveUp(MoveUpFunctionDto input);
  9. Task MoveDown(MoveDownFunctionDto input);
  10. Task Refresh();
  11. }
  12. }