public IActionResult TestimonialManagement(int id) { Testimonial testimonial = Testimonial.GetById(id); testimonial.IsApproved = true; return(RedirectToAction("Index")); }