//Bestellingen
        public List <Bestelling> GetBestelling()
        {
            BestellingMapper mapper = new BestellingMapper();

            return(mapper.getBestellingFromDB(_connectionString));
        }
        public int addBestelling(Bestelling item)
        {
            BestellingMapper mapper = new BestellingMapper();

            return(mapper.addBestellingToDB(_connectionString, item));
        }
        public void UpdateBetaalstatusBestelling(int IdBestelling, string betaald)
        {
            BestellingMapper mapper = new BestellingMapper();

            mapper.updateBestellingToDB(_connectionString, IdBestelling, betaald);
        }