public bool dropCourseFromStudent(StudentDAO student, CourseDAO course)
 {
     return(studentstuff.dropCourse(StudentMapper.MapToStudent(student), CourseMapper.MapToCourse(course)));
 }
        public bool AddCourse(CourseDAO course)
        {
            var c = CourseMapper.MapToCourse(course);

            return(InsertData.InsertCourse(c));
        }