Beispiel #1
0
 public List <int> SelectStudentSelfAnswer(int userId, int examId)
 {
     try
     {
         return(examDal.SelectStudentSelfAnswer(userId, examId));
     }
     catch (SqlException sqlException)
     {
         log.Error(sqlException.StackTrace);
         throw new FaultException <DBException>(new DBException(), Constants.ServerError);
     }
 }