Example #1
0
        public ActionResult GetAllComment()
        {
            TestimonialsDAO testimonialsDAO = new TestimonialsDAO();

            return(PartialView("_GetAllComment", testimonialsDAO.GetAllTestimonials()));
        }
Example #2
0
        public ActionResult Testimonials()
        {
            TestimonialsDAO testimonialsDAO = new TestimonialsDAO();

            return(View(testimonialsDAO.GetAllTestimonials()));
        }