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 Create(CreateOrUpdateMenuDto input); Task Delete(List ids); Task Update(Guid id, CreateOrUpdateMenuDto input); Task> GetAll(GetMenuInputDto input); Task Get(Guid id); Task> LoadAll(Guid? id); } }