public void LaatProductzien(Product product)
 {
     List<Vraag> vragen = mng.GetVraag(product.Naam);
     List<Review> reviews = mng.GetReview(product.Naam);
     if (reviews != null)
     {
         TextBox1.Text = product.ToString();
         foreach (Review rev in reviews)
         {
             TextBox1.Text = TextBox1.Text + rev.ToString();
         }
         if (vragen != null)
         {
             foreach (Vraag vra in vragen)
             {
                 TextBox1.Text = TextBox1.Text + vra.ToString();
             }
         }
     }
     else
     {
         TextBox1.Text = product.ToString();
         if (vragen != null)
         {
             foreach (Vraag vra in vragen)
             {
                 TextBox1.Text = TextBox1.Text + vra.ToString();
             }
         }
     }
 }