Ejemplo n.º 1
0
        public IActionResult TestimonialManagement(int id)
        {
            Testimonial testimonial = Testimonial.GetById(id);

            testimonial.IsApproved = true;

            return(RedirectToAction("Index"));
        }