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.
24 lines
647 B
24 lines
647 B
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);
|
|
}
|
|
}
|
|
|