using Microsoft.AspNetCore.Identity; using System; using System.Threading.Tasks; using System.Threading; using MvcMovie.Models; namespace MvcMovie.Data { public class AppRoleStore : IRoleStore { public Task CreateAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task DeleteAsync(AppRole role, CancellationToken cancellationToken) { throw new NotImplementedException(); } public void Dispose() { } 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(); } } }