You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
647 B
25 lines
647 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Threading.Tasks;
|
||
|
using BaseService.Systems.MenuManagement.Dto;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
using Volo.Abp.Application.Services;
|
||
|
|
||
|
namespace BaseService.Systems.MenuManagement
|
||
|
{
|
||
|
public interface IMenuAppService : IApplicationService
|
||
|
{
|
||
|
Task<MenuDto> Create(CreateOrUpdateMenuDto input);
|
||
|
|
||
|
Task Delete(List<Guid> ids);
|
||
|
|
||
|
Task<MenuDto> Update(Guid id, CreateOrUpdateMenuDto input);
|
||
|
|
||
|
Task<ListResultDto<MenuDto>> GetAll(GetMenuInputDto input);
|
||
|
|
||
|
Task<MenuDto> Get(Guid id);
|
||
|
|
||
|
Task<ListResultDto<MenuDto>> LoadAll(Guid? id);
|
||
|
}
|
||
|
}
|