public IActionResult Address(AddressInputModel newAddress)
        {
            if (ModelState.IsValid)
            {
                var userId = this.User.FindFirstValue(ClaimTypes.NameIdentifier);
                _accountService.AddNewAddress(newAddress, userId);
                return(RedirectToAction("Information"));
            }

            return(View());
        }