|  |  |  | @ -5,18 +5,14 @@ using Volo.Abp.Application.Services; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | namespace Volo.Abp.Identity | 
			
		
	
		
			
				
					|  |  |  |  | { | 
			
		
	
		
			
				
					|  |  |  |  |     public interface IIdentityRoleAppService : IApplicationService | 
			
		
	
		
			
				
					|  |  |  |  |     public interface IIdentityRoleAppService | 
			
		
	
		
			
				
					|  |  |  |  |         : ICrudAppService< | 
			
		
	
		
			
				
					|  |  |  |  |             IdentityRoleDto, | 
			
		
	
		
			
				
					|  |  |  |  |             Guid, | 
			
		
	
		
			
				
					|  |  |  |  |             PagedAndSortedResultRequestDto, | 
			
		
	
		
			
				
					|  |  |  |  |             IdentityRoleCreateDto, | 
			
		
	
		
			
				
					|  |  |  |  |             IdentityRoleUpdateDto> | 
			
		
	
		
			
				
					|  |  |  |  |     { | 
			
		
	
		
			
				
					|  |  |  |  |         Task<ListResultDto<IdentityRoleDto>> GetAllListAsync(); | 
			
		
	
		
			
				
					|  |  |  |  |          | 
			
		
	
		
			
				
					|  |  |  |  |         Task<PagedResultDto<IdentityRoleDto>> GetListAsync(PagedAndSortedResultRequestDto input); | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |         Task<IdentityRoleDto> CreateAsync(IdentityRoleCreateDto input); | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |         Task<IdentityRoleDto> GetAsync(Guid id); | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |         Task<IdentityRoleDto> UpdateAsync(Guid id, IdentityRoleUpdateDto input); | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |         Task DeleteAsync(Guid id); | 
			
		
	
		
			
				
					|  |  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |  | } | 
			
		
	
	
		
			
				
					|  |  |  | 
 |