2022-09-10 00:33:17 +03:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.AspNetCore.Identity;
|
2022-09-11 01:22:04 +03:00
|
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
2022-09-10 00:33:17 +03:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
namespace BlueWest.WebApi.Context.Users;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Role storage management
|
|
|
|
/// </summary>
|
2022-09-11 01:22:04 +03:00
|
|
|
/*public class RoleStore : RoleStore<ApplicationRole>
|
2022-09-10 00:33:17 +03:00
|
|
|
{
|
2022-09-11 01:22:04 +03:00
|
|
|
|
|
|
|
}*/
|