public CachedSessionRepository(IMemoryCache cache, IHftClientService hftClientService)
 {
     _cache            = cache;
     _hftClientService = hftClientService;
 }
 public KeyAuthHandler(IOptionsMonitor <KeyAuthOptions> options, ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock,
                       IHftClientService hftClientService)
     : base(options, logger, encoder, clock)
 {
     _hftClientService = hftClientService;
 }
 public ApiKeyValidator(IHftClientService hftClientService)
 {
     _hftClientService = hftClientService;
 }