Exemple #1
0
        public List <Exams> GetRolesList(System.String searchText = null, bool showDeleted = false)
        {
            string Context = this.GetType().FullName.ToString();

            try
            {
                return(ExamIntegration.GetExamsList());
            }
            catch (Exception ex)
            {
                throw (new Exception(Context, ex));
            }
        }
Exemple #2
0
 public static int DeleteExam(Exams theExam)
 {
     return(ExamIntegration.DeleteExam(theExam));
 }
Exemple #3
0
 public static int UpdateExam(Exams theExam)
 {
     return(ExamIntegration.UpdateExam(theExam));
 }
Exemple #4
0
 public static int InsertExam(Exams theExam)
 {
     return(ExamIntegration.InsertExam(theExam));
 }
Exemple #5
0
 public List <Exams> GetExamsList()
 {
     return(ExamIntegration.GetExamsList());
 }