Пример #1
0
        public List <ExamMark> GetRolesList(System.String searchText = null, bool showDeleted = false)
        {
            string Context = this.GetType().FullName.ToString();

            try
            {
                return(ExamMarkIntegration.GetExamsMarkList());
            }
            catch (Exception ex)
            {
                throw (new Exception(Context, ex));
            }
        }
Пример #2
0
 public static int DeleteExamMarks(ExamMark theExamMark)
 {
     return(ExamMarkIntegration.DeleteExamMark(theExamMark));
 }
Пример #3
0
 public static int UpdateExamMarks(ExamMark theExamMark)
 {
     return(ExamMarkIntegration.UpdateExamMark(theExamMark));
 }
Пример #4
0
 public static int InsertExamMarks(ExamMark theExamMark)
 {
     return(ExamMarkIntegration.InsertExamMark(theExamMark));
 }
Пример #5
0
 public static List <ExamMark> GetExamsMarkList()
 {
     return(ExamMarkIntegration.GetExamsMarkList());
 }