コード例 #1
0
        public ActionResult CoursePage(string courseID)
        {
            //would make a call to classes to get a model full of info
            //return here
            //then will be sent to the view
            ViewBag.Message = "Description about the course";

            var results = _moduleService.GetCourse(courseID);

            return(View(results));
        }