示例#1
0
 /// <summary>
 /// Adds user to course by passing a view model including the userId and the courseInstanceId
 /// </summary>
 public ActionResult AddUserToCourse(AdminAddCourseToUserViewModel model)
 {
     return(Json(_courseService.AddUserToCourse(model)));
 }