public BasicAuthenticationHandler(
     IOptionsMonitor <AuthenticationSchemeOptions> options,
     ILoggerFactory logger,
     UrlEncoder encoder,
     ISystemClock clock,
     LescanoWebContext context)
     : base(options, logger, encoder, clock)
 {
     _context = context;
 }
示例#2
0
 public PersonasController(LescanoWebContext context)
 {
     _context = context;
 }
示例#3
0
 public UsuariosController(LescanoWebContext context, IOptions <JWTSettings> jwtSettings)
 {
     _context     = context;
     _jwtSettings = jwtSettings.Value;
 }