예제 #1
0
 public void addTestResult(Test test)
 {
     TestResultDAL.AddTestResult(test);
 }
예제 #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)));
 }