public bool DeleteProductFromBestelling(int index)
        {
            ProductenInBestelling productInBestelling = _controller.GetProductenInBestelling(_actieveBestelling.IdBestelling)[index];

            return(_controller.DeleteProductenInBestelling(productInBestelling.IdProducten, productInBestelling.IdBestelling));
        }