예제 #1
0
        private void initializeListe()
        {
            this.gestionMagasin = GestionMagasinBuilderFactory.getInterface();

            List<Commande> commandes = this.gestionMagasin.getAllCommande();

            commandeCollection.Clear();

            foreach (Commande commande in commandes)
            {
                commandeCollection.Add(commande);
            }
        }
예제 #2
0
        private void initializeListe()
        {
            this.gestionMagasin = GestionMagasinBuilderFactory.getInterface();

            List<Utilisateur> users = this.gestionMagasin.getAllUsers();

            userCollection.Clear();

            foreach (Utilisateur user in users)
            {
                userCollection.Add(user);
            }
        }
예제 #3
0
        private void initializeListe()
        {
            this.gestionMagasin = GestionMagasinBuilderFactory.getInterface();

            List<Produit> produits = this.gestionMagasin.getAllProduit();

            produitCollection.Clear();

            foreach (Produit produit in produits)
            {
                produitCollection.Add(produit);
            }
        }