Esempio n. 1
0
        public void addVakStudent(VakStudent vakStudent)
        {
            VakStudentMapper mapper = new VakStudentMapper(_connectionString);

            mapper.addVakStudentToDB(vakStudent);
        }
Esempio n. 2
0
        public void removeVakStudent(int idVak, int idGebruiker)
        {
            VakStudentMapper mapper = new VakStudentMapper(_connectionString);

            mapper.removeVakStudentFromDB(idVak, idGebruiker);
        }
Esempio n. 3
0
        public List <VakStudent> getVakStudent()
        {
            VakStudentMapper mapper = new VakStudentMapper(_connectionString);

            return(mapper.getVakStudentFromDB());
        }