Ejemplo n.º 1
0
 public void addTestResult(Test test)
 {
     TestResultDAL.AddTestResult(test);
 }
Ejemplo n.º 2
0
 public string AddTestResult(int userid, int testid, string date, int timetaken, int correct, int total, string testname)
 {
     return(JsonConvert.SerializeObject(TestResultDAL.AddTestResult(userid, testid, timetaken, correct, total, testname)));
 }