Exemplo n.º 1
0
 public PayloadHandler(IAuthService authService, ITokenService tokenService, IHttpContextAccessor httpContextAccessor, ILogger <PayloadHandler> logger, FewBoxConfig fewBoxConfig)
 {
     this.TokenService        = tokenService;
     this.HttpContextAccessor = httpContextAccessor;
     this.Logger       = logger;
     this.FewBoxConfig = fewBoxConfig;
 }
Exemplo n.º 2
0
 public JWTValuesController(ITokenService tokenService, FewBoxConfig fewboxConfig)
 {
     this.TokenService = tokenService;
     this.FewBoxConfig = fewboxConfig;
     this.Values       = new List <Value> {
         new Value {
             Id = 1, Content = "Value1"
         },
         new Value {
             Id = 2, Content = "Value2"
         }
     };
 }
Exemplo n.º 3
0
 public HealthzController(FewBoxConfig fewBoxConfig)
 {
     this.FewBoxConfig = fewBoxConfig;
 }
Exemplo n.º 4
0
 public RemoteAuthService(IHttpContextAccessor httpContextAccessor, FewBoxConfig fewboxConfig)
 {
     this.HttpContextAccessor = httpContextAccessor;
     this.FewBoxConfig        = fewboxConfig;
 }
Exemplo n.º 5
0
 public PayloadController(ITokenService tokenService, FewBoxConfig fewBoxConfig)
 {
     this.TokenService = tokenService;
     this.FewBoxConfig = fewBoxConfig;
 }
Exemplo n.º 6
0
 public FewBoxService(FewBoxConfig fewBoxConfig)
 {
     this.FewBoxConfig = fewBoxConfig;
 }