Exemplo n.º 1
0
 public RoleDBUserStore(RoleDBSingleton <TUser, TRole, TContext> info, TContext context, IServiceProvider services, IdentityErrorDescriber describer = null)
     : base(context, describer)
 {
     this._info     = info;
     this._services = services;
     this._context  = context;
 }
Exemplo n.º 2
0
 public RoleDbRoleRoleManager(RoleDBSingleton <TUser, TRole, TContext> info, IRoleStore <TRole> store, IEnumerable <IRoleValidator <TRole> > roleValidators, ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors, ILogger <RoleManager <TRole> > logger)
     : base(store, roleValidators, keyNormalizer, errors, logger)
 {
     _info = info;
 }