Example #1
0
 public DepartmentsController(BlazorDemoDbContext context)
 {
     _context = context;
 }
Example #2
0
 public UsersController(BlazorDemoDbContext context, IOptions <JWTSettings> jwtsettings)
 {
     _context     = context;
     _jwtsettings = jwtsettings.Value;
 }
Example #3
0
 public UserInfoController(BlazorDemoDbContext context)
 {
     _context = context;
 }