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 AddStudent(StudentDAO student)
        {
            var stud = StudentMapper.MapToStudent(student);

            return(InsertData.InsertStudent(stud));
        }