public void DropCourse(StudentRegisteredCourseInfo studentRegisteredCourseInfo)
        {
            string sectionTable = studentRegisteredCourseInfo.CourseName + studentRegisteredCourseInfo.CourseSection;

            studentRegisteredCourseAccess.DropCourse(studentRegisteredCourseInfo.StudentId, studentRegisteredCourseInfo.StudentName, sectionTable, studentRegisteredCourseInfo.CourseName, studentRegisteredCourseInfo.CourseSection);
        }
 public DataTable GetAllCourse(StudentRegisteredCourseInfo studentRegisteredCourseInfo)
 {
     return(studentRegisteredCourseAccess.GetRegisteredCourses(studentRegisteredCourseInfo.StudentId));
 }