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

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

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

            return(mapper.getStudentStudierichtingFromDB());
        }