Exemplo n.º 1
0
        public List <Lijst> getLHCFromGebruiker(int indexGebruiker)
        {
            LijstMapper mapper = new LijstMapper(_connectionstring);

            return(mapper.getLijstFromDB(indexGebruiker));
        }
Exemplo n.º 2
0
        public List <Lijst> getWishlistsFromDB()
        {
            LijstMapper mapper = new LijstMapper(_connectionstring);

            return(mapper.getListsFromDB());
        }
Exemplo n.º 3
0
        public void addWishlistsToDB(Lijst item)
        {
            LijstMapper mapper = new LijstMapper(_connectionstring);

            mapper.addLijstToDB(item);
        }
Exemplo n.º 4
0
        public List <Cadeau> getLHCFromID(int indexID)
        {
            LijstMapper mapper = new LijstMapper(_connectionstring);

            return(mapper.getLHCFromID(indexID));
        }