public void InsertCourseToStudent(StudentCourseSelectInfo studentCourseSelectInfo)
        {
            string sectionTable = studentCourseSelectInfo.CourseName + studentCourseSelectInfo.CourseSection;

            studentCourseSelectAccess.InsertCourseToStudent(studentCourseSelectInfo.StudentName, studentCourseSelectInfo.StudentId, studentCourseSelectInfo.CourseName, studentCourseSelectInfo.CourseSection, sectionTable);
        }
 public DataTable GetAllSection(StudentCourseSelectInfo studentCourseSelectInfo)
 {
     return(studentCourseSelectAccess.GetAllSection(studentCourseSelectInfo.CourseName));
 }