|
|
|
@ -1,13 +1,12 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
using Volo.Abp.BlazoriseUI;
|
|
|
|
|
using Volo.Abp.PermissionManagement.Blazor.Components;
|
|
|
|
|
|
|
|
|
|
namespace Volo.Abp.Identity.Blazor.Pages.Identity
|
|
|
|
|
{
|
|
|
|
|
public abstract class RoleManagementBase : AbpCrudPageBase<IIdentityRoleAppService,IdentityRoleDto, Guid, PagedAndSortedResultRequestDto, IdentityRoleCreateDto, IdentityRoleUpdateDto>
|
|
|
|
|
public abstract class RoleManagementBase : AbpCrudPageBase<IIdentityRoleAppService, IdentityRoleDto, Guid, GetIdentityRolesInput, IdentityRoleCreateDto, IdentityRoleUpdateDto>
|
|
|
|
|
{
|
|
|
|
|
protected const string PermissionProviderName = "R";
|
|
|
|
|
|
|
|
|
|