Example #1
0
 public JsonResult LMSSetValue([FromBody] LMSInfo o)
 {
     SCORM.Setvalue(o); // the SetValue object takes care of all Setvalue calls
     return(Json(o));
 }
Example #2
0
 public JsonResult LMSGetValue([FromBody] LMSInfo o)
 {
     SCORM.Getvalue(o);  //The GetValue static class handles all GetValues
     return(Json(o));
 }