Exemplo n.º 1
0
 public MultiTenantRoleClaimStore(MultiTenantIamDbContext <TUser, TRole, TKey, TTenantKey> context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public MultiTenantIamProvider(MultiTenantIamDbContext <TUser, TRole, TKey, TTenantKey> context, RoleManager <TRole> roleManager) : base(context)
 {
     _context     = context ?? throw new ArgumentNullException(nameof(context));
     _roleManager = roleManager ?? throw new ArgumentNullException(nameof(roleManager));
 }