Ejemplo n.º 1
0
 public Seeder(ISGuid sGuid, QpancContext context, UserManager <User> userManager, RoleManager <Role> roleManager)
 {
     this._sGuid       = sGuid;
     this._context     = context;
     this._userManager = userManager;
     this._roleManager = roleManager;
 }
Ejemplo n.º 2
0
 public Authentication(
     UserManager <User> userManager,
     QpancContext context,
     ISGuid sguid,
     ILoggedUser loggedUser,
     IStringLocalizer <Messages> localizer)
 {
     this._userManager = userManager;
     this._context     = context;
     this._sguid       = sguid;
     this._loggedUser  = loggedUser;
     this._localizer   = localizer;
 }
Ejemplo n.º 3
0
 public TokenGenerator(QpancContext context, IJwtBearer jwtBearer)
 {
     this._context   = context;
     this._jwtBearer = jwtBearer;
 }