void ChargementListBox(Categorie categ)
 {
     try
     {
         dataGridView1.DataSource = categ.AllCategorie();
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 private void ReceiveDatas(Categorie categ)
 {
     dgCategorie.DataSource = categ.AllCategorie();
 }