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.
26 lines
770 B
26 lines
770 B
using System;
|
|
using System.Threading.Tasks;
|
|
using CompanyName.ProjectName.Roles.Dtos;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Application.Services;
|
|
using Volo.Abp.Identity;
|
|
|
|
namespace CompanyName.ProjectName.Roles
|
|
{
|
|
public interface IRoleAppService : IApplicationService
|
|
{
|
|
Task<ListResultDto<IdentityRoleDto>> AllListAsync();
|
|
|
|
Task<PagedResultDto<IdentityRoleDto>> ListAsync(PagingRoleListInput input);
|
|
|
|
Task<IdentityRoleDto> CreateAsync(IdentityRoleCreateDto input);
|
|
|
|
Task<IdentityRoleDto> UpdateAsync(UpdateRoleInput input);
|
|
|
|
Task DeleteAsync(Guid id);
|
|
|
|
Task<PermissionOutput> GetPermissionAsync(GetPermissionInput input);
|
|
|
|
Task UpdatePermissionAsync(UpdateRolePermissionsInput input);
|
|
}
|
|
}
|