public async Task <IActionResult> Add(string Key, string Account)
        {
            CaptchaKeys captcha = new CaptchaKeys(Key, Account);
            await _captchaService.Add(captcha);

            return(await BuildPartialView());
        }