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.
20 lines
527 B
20 lines
527 B
1 year ago
|
using BaseService.Systems.UserRoleMenusManagement.Dto;
|
||
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
using Volo.Abp.Application.Services;
|
||
|
|
||
|
namespace BaseService.Systems.UserMenusManagement
|
||
|
{
|
||
|
public interface IRoleMenusAppService : IApplicationService
|
||
|
{
|
||
|
Task<ListResultDto<RoleMenusDto>> GetRoleMenus();
|
||
|
|
||
|
Task<ListResultDto<Guid>> GetRoleMenuIds(Guid id);
|
||
|
|
||
|
Task<ListResultDto<MenusListDto>> GetMenusList();
|
||
|
|
||
|
Task Update(UpdateRoleMenuDto input);
|
||
|
}
|
||
|
}
|