Exemple #1
0
        /// <summary>
        /// opens the window to show all products
        /// </summary>
        private void ListAllProducts()
        {
            OutputOfProducts o = new OutputOfProducts();

            o.Show();
            o.Closed += (a, b) => { SaveProducts(); };
        }
        //Shows all products
        private void ListAllProducts()
        {
            OutputOfProducts o = new OutputOfProducts();

            o.Show();
        }