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