Exemple #1
0
 private void dataFactures()
 {
     foreach (Commande com in CommandeADO.readAll())
     {
         dGVFactures.Rows.Add(com.Id, com.PrixTotal, com.EffectifMT, com.TypeCommande, com.Client);
     }
 }