public void PurgeDatabase() { CategorieCommand catC = new CategorieCommand(contexte); ClientCommand cliC = new ClientCommand(contexte); CommandeCommand comC = new CommandeCommand(contexte); ProduitCommand proC = new ProduitCommand(contexte); StatutCommand staC = new StatutCommand(contexte); catC.Purge(); cliC.Purge(); comC.Purge(); proC.Purge(); staC.Purge(); }