public RateLimitingMiddleware(RequestDelegate next, IRateLimitingService service, ILogger <RateLimitingMiddleware> logger) { this.next = next; this.service = service; this.logger = logger; }
public CaptchaModel(IRateLimitingService rateLimitingService) { this.rateLimitingService = rateLimitingService; }