public IActionResult RemoveSection(string id) { bool isSucces = ContentModel.RemoveSection(int.Parse(id)); if (isSucces) { return(RedirectToAction("Index")); } else { return(NotFound()); } }