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)); } }
public static int DeleteExamMarks(ExamMark theExamMark) { return(ExamMarkIntegration.DeleteExamMark(theExamMark)); }
public static int UpdateExamMarks(ExamMark theExamMark) { return(ExamMarkIntegration.UpdateExamMark(theExamMark)); }
public static int InsertExamMarks(ExamMark theExamMark) { return(ExamMarkIntegration.InsertExamMark(theExamMark)); }
public static List <ExamMark> GetExamsMarkList() { return(ExamMarkIntegration.GetExamsMarkList()); }