Пример #1
0
 public bool dropCourseFromStudent(StudentDAO student, CourseDAO course)
 {
     return(studentstuff.dropCourse(StudentMapper.MapToStudent(student), CourseMapper.MapToCourse(course)));
 }
Пример #2
0
        public bool AddCourse(CourseDAO course)
        {
            var c = CourseMapper.MapToCourse(course);

            return(InsertData.InsertCourse(c));
        }