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

            return(InsertData.InsertCourse(c));
        }