public List <Cadeau> getLHCFromCode(int indexLijst) { LHCMapper mapper = new LHCMapper(_connectionstring); return(mapper.getLHCFromCode(indexLijst)); }
public List <LijstHasCadeau> getLHCFromWishlist(int FK_Lijst) { LHCMapper mapper = new LHCMapper(_connectionstring); return(mapper.getLHCFromWishlist(FK_Lijst)); }
public List <LijstHasCadeau> getLHCFromDB() { LHCMapper mapper = new LHCMapper(_connectionstring); return(mapper.getLHCFromDB()); }
public void addLHCToDB(LijstHasCadeau lhc) { LHCMapper mapper = new LHCMapper(_connectionstring); mapper.AddLHCToDB(lhc); }
public void removeLHCFromWishlist(LijstHasCadeau item) { LHCMapper mapper = new LHCMapper(_connectionstring); mapper.deleteLHCFromDB(item); }
public void changeStatus(int id, string Status) { LHCMapper _lhcmapper = new LHCMapper(_connectionstring); _lhcmapper.changeConvert(id, Status); }