private void button1_Click(object sender, EventArgs e)
        {
            string uneReferenceProduit = Passerelle.getRefProduitParNom(comboBoxProduit.SelectedItem.ToString());

            // int idInventaire = Pase

            DialogResult reponse = MessageBox.Show(this, "Êtes-vous sûr de vouloir enregistrer cet inventaire ?", "Enregistrer Inventaire", MessageBoxButtons.OKCancel);

            if (reponse == DialogResult.OK)
            {   //création de la commande dans la BDD
                foreach (DataGridViewRow row in dataGridViewInventoriste.Rows)
                {
                    int idInventoriste = Convert.ToInt32(row.Cells["Idinventoriste"].Value);

                    if (idInventoriste != -1)
                    {
                        uneParticipation = new Participer(choixInventaire, idInventoriste, uneReferenceProduit);
                        int invOk1 = Passerelle.assignerInventoriste(uneParticipation);
                    }
                }
            }
        }