Example #1
0
 public TokenProviderMiddleware(
     RequestDelegate next, IOptions <TokenProviderOptions> options, ReduxDbContext context)
 {
     this._next    = next;
     this._options = options.Value;
     this._context = context;
 }
Example #2
0
 public EmployeeController(ReduxDbContext context)
 {
     _context = context;
 }