//On peut commander les produits que l'on souhaite
 private void buttonCommander_Click(object sender, RoutedEventArgs e)
 {
     if (boxIngredients.SelectedItem != null)
     {
         string[] quantiteCommandee = boxQteCommande.Text.Split(' ');
         string[] quantiteActuelle  = boxQteActuelle.Text.Split(' ');
         double   stock             = Convert.ToDouble(quantiteCommandee[0]) + Convert.ToDouble(quantiteActuelle[0]);
         RessourceSQL.commandeProduit(((Produit)boxIngredients.SelectedItem).NomProduit, stock.ToString());
         listProduit.Items.Clear();
         boxIngredients.Items.Clear();
         foreach (Produit p in RessourceSQL.allProduits)
         {
             boxIngredients.Items.Add(p);
             listProduit.Items.Add(p);
         }
     }
 }