Esempio n. 1
0
        public List <Cadeau> getLHCFromCode(int indexLijst)
        {
            LHCMapper mapper = new LHCMapper(_connectionstring);

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

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

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

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

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

            _lhcmapper.changeConvert(id, Status);
        }