public ActionResult GetCoursesByCategoryId(int id) { List <CourseVM> courses = courseBll.GetCoursesByCategId(id); return(PartialView(courses)); }