Skip to content
Snippets Groups Projects
Commit 1423f4be authored by Christoph Thelen's avatar Christoph Thelen
Browse files

Build fix

parent 4c42a532
Branches
Tags
No related merge requests found
......@@ -574,4 +574,52 @@ public class StubDatabaseDao implements IDatabaseDao {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getSkillQuestionsForUsers(Session session) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getSkillQuestionsForTeachers(Session session) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getLectureQuestionsForUsers(Session session) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getLectureQuestionsForTeachers(Session session) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getFlashcardsForUsers(Session session) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getFlashcardsForTeachers(Session session) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getPreparationQuestionsForUsers(Session session) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Question> getPreparationQuestionsForTeachers(Session session) {
// TODO Auto-generated method stub
return null;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment