Esempio n. 1
0
        public void addStudentStudierichting(StudentStudierichting studentstudierichting)
        {
            StudentStudierichtingMapper mapper = new StudentStudierichtingMapper(_connectionString);

            mapper.addStudentStudierichtingToDB(studentstudierichting);
        }
Esempio n. 2
0
        public void adjustStudentStudierichting(StudentStudierichting studentstudierichting, int id)
        {
            StudentStudierichtingMapper mapper = new StudentStudierichtingMapper(_connectionString);

            mapper.AdjustStudentStudierichtingFromDB(studentstudierichting, id);
        }
Esempio n. 3
0
        public List <StudentStudierichting> getStudentStudierichting()
        {
            StudentStudierichtingMapper mapper = new StudentStudierichtingMapper(_connectionString);

            return(mapper.getStudentStudierichtingFromDB());
        }