namespace MyOffice.Web.Identity.Repositories; using Domain; using Microsoft.AspNetCore.Identity; public class RoleStore : IRoleStore { public void Dispose() { } public Task CreateAsync(ApplicationRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task UpdateAsync(ApplicationRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task DeleteAsync(ApplicationRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetRoleIdAsync(ApplicationRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetRoleNameAsync(ApplicationRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task SetRoleNameAsync(ApplicationRole role, string roleName, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetNormalizedRoleNameAsync(ApplicationRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task SetNormalizedRoleNameAsync(ApplicationRole role, string normalizedName, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task FindByIdAsync(string roleId, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task FindByNameAsync(string normalizedRoleName, CancellationToken cancellationToken) { throw new NotImplementedException(); } }