public ActionResult ProfileExists(string userId)
        {
            bool exists = _customerService.CustomerProfileExists(userId);

            return(Json(exists));
        }