Beispiel #1
0
        public List <Cadeau> getLHCFromCode(int indexLijst)
        {
            LHCMapper mapper = new LHCMapper(_connectionstring);

            return(mapper.getLHCFromCode(indexLijst));
        }
Beispiel #2
0
        public List <LijstHasCadeau> getLHCFromWishlist(int FK_Lijst)
        {
            LHCMapper mapper = new LHCMapper(_connectionstring);

            return(mapper.getLHCFromWishlist(FK_Lijst));
        }
Beispiel #3
0
        public List <LijstHasCadeau> getLHCFromDB()
        {
            LHCMapper mapper = new LHCMapper(_connectionstring);

            return(mapper.getLHCFromDB());
        }
Beispiel #4
0
        public void addLHCToDB(LijstHasCadeau lhc)
        {
            LHCMapper mapper = new LHCMapper(_connectionstring);

            mapper.AddLHCToDB(lhc);
        }
Beispiel #5
0
        public void removeLHCFromWishlist(LijstHasCadeau item)
        {
            LHCMapper mapper = new LHCMapper(_connectionstring);

            mapper.deleteLHCFromDB(item);
        }
Beispiel #6
0
        public void changeStatus(int id, string Status)
        {
            LHCMapper _lhcmapper = new LHCMapper(_connectionstring);

            _lhcmapper.changeConvert(id, Status);
        }