18 lines
551 B
C#
18 lines
551 B
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace BlueWest.WebApi.Context.Users;
|
|
|
|
public class RoleManager : RoleManager<ApplicationRole>
|
|
{
|
|
public RoleManager(
|
|
IRoleStore<ApplicationRole> store,
|
|
IEnumerable<IRoleValidator<ApplicationRole>> roleValidators,
|
|
ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors,
|
|
ILogger<RoleManager<ApplicationRole>> logger) : base(store, roleValidators, keyNormalizer, errors, logger)
|
|
{
|
|
}
|
|
|
|
|
|
} |