using System.Threading.Tasks; using Abp.Application.Services; using Abp.Application.Services.Dto; using BCS.BMC.Roles.Dto; namespace BCS.BMC.Roles { public interface IRoleAppService : IAsyncCrudAppService { Task> GetAllPermissions(); Task GetRoleForEdit(EntityDto input); Task> GetRolesAsync(GetRolesInput input); } }