public ActionResult GetAllComment() { TestimonialsDAO testimonialsDAO = new TestimonialsDAO(); return(PartialView("_GetAllComment", testimonialsDAO.GetAllTestimonials())); }
public ActionResult Testimonials() { TestimonialsDAO testimonialsDAO = new TestimonialsDAO(); return(View(testimonialsDAO.GetAllTestimonials())); }