public IActionResult CheckExist(string name) { var result = _pageRepository.CheckName(name); return(Json(new { result = !result })); }