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