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