public void addProductenInBestelling(int indexProduct, int aantal)
        {
            ProductenInBestelling item = new ProductenInBestelling(_actieveBestelling.IdBestelling, _controller.GetProducten()[indexProduct].IdProduct, aantal);

            _controller.addProductenInBestelling(item);
        }