Beispiel #1
0
        public static void SearchMenu()
        {
            Console.Title = "Rechercher | Stock App";

            ConsoleMenu.Show("search",
                             true,
                             "Par référence",
                             "Par nom",
                             "Par intervalle de prix de vente",
                             "Retour");
        }
Beispiel #2
0
        public static void Main(string[] args)
        {
            MainApp = new Program();
            MainApp.MainNoStatic();

            // TESTING PURPOSE
            Stock.Add(new Article(GenerateId(), "test", 10, 5000));
            Stock.Add(new Article(GenerateId(), "test", 40, 1000));
            Stock.Add(new Article(GenerateId(), "test2", 50, 2005));
            Stock.Add(new Article(GenerateId(), "test3", 7, 5074));
            Stock.Add(new Article(GenerateId(), "test4", 46, 4501));

            Console.OutputEncoding = System.Text.Encoding.UTF8;
            ConsoleMenu.Show("main", true,
                             "Rechercher un article",
                             "Ajouter un article au stock en vérifiant l’unicité de la référence",
                             "Supprimer un article par référence",
                             "Modifier un article par référence",
                             "Afficher tous les articles",
                             "Quitter la Console");
        }