using APP.Models; using Microsoft.AspNetCore.Identity; using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace APP.Identity { public class RoleAppService : IRoleStore { private bool disposed; public Task CreateAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task DeleteAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public void Dispose() { disposed = true; } public Task FindByIdAsync(string roleId, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task FindByNameAsync(string normalizedRoleName, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetNormalizedRoleNameAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetRoleIdAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetRoleNameAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task SetNormalizedRoleNameAsync(AppRole role, string normalizedName, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task SetRoleNameAsync(AppRole role, string roleName, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task UpdateAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } } }