using Abp.Application.Services.Dto; using VberZero.AppService.Base; using VberZero.AppService.Base.Dto; using VberZero.AppService.Roles.Dto; namespace VberZero.AppService.Roles; public interface IRoleAppServiceBase : IVzCrudAppService { Task GetPermissions(int roleId); Task> GetAllPermissions(); Task GetRoleForEdit(EntityDto input); Task> GetRolesAsync(GetRolesInput input); }