public List <Lijst> getLHCFromGebruiker(int indexGebruiker) { LijstMapper mapper = new LijstMapper(_connectionstring); return(mapper.getLijstFromDB(indexGebruiker)); }
public List <Lijst> getWishlistsFromDB() { LijstMapper mapper = new LijstMapper(_connectionstring); return(mapper.getListsFromDB()); }
public void addWishlistsToDB(Lijst item) { LijstMapper mapper = new LijstMapper(_connectionstring); mapper.addLijstToDB(item); }
public List <Cadeau> getLHCFromID(int indexID) { LijstMapper mapper = new LijstMapper(_connectionstring); return(mapper.getLHCFromID(indexID)); }