Ejemplo n.º 1
0
 public IEnumerable <TestResult> GetTestResult()
 {
     try
     {
         return(_dataRepositoty.CommonGetMethod <TestResult>("USP_GetStudentsTestResult"));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
 public List <QuestionModel> GetQuestions()
 {
     try
     {
         List <QuestionModel> getTestQuestions = _dataRepositoty.CommonGetMethod <QuestionModel>("USP_GetQuestions");
         return(getTestQuestions);
     }
     catch (Exception)
     {
         throw;
     }
 }