public JsonResult LMSGetValue([FromBody] LMSInfo o)
 {
     if (o is null)
     {
         LMSInfo o1 = new LMSInfo();
         o1.errorCode   = "201";
         o1.errorString = "Invalid or incomplete data, can't initialize";
         o1.returnValue = "false";
         return(Json(o1));
     }
     SCORM.Getvalue(o);  //The GetValue static class handles all GetValues
     return(Json(o));
 }
示例#2
0
 public JsonResult LMSGetValue([FromBody] LMSInfo o)
 {
     SCORM.Getvalue(o);  //The GetValue static class handles all GetValues
     return(Json(o));
 }