Beispiel #1
0
 public AppSettings(IConnectionStrings connectionStrings, IJwtBearer jwtBetter, ICors cors)
 {
     this.ConnectionString = connectionStrings;
     this.JwtBearer = jwtBetter;
     this.Cors = cors;
 }
Beispiel #2
0
 public JwtBearer(IServiceProvider provider, IJwtBearer settings)
 {
     this._provider = provider;
     this._settings = settings;
 }
Beispiel #3
0
 public TokenGenerator(QpancContext context, IJwtBearer jwtBearer)
 {
     this._context   = context;
     this._jwtBearer = jwtBearer;
 }