Exemple #1
0
        private static void FireAllEmployees(string[] v)
        {
            string compName = v[0];

            if (!companies.ContainsKey(compName))
            {
                Console.WriteLine("Could not FireAllEmployees");
                return;
            }
            Company company = companies[compName];

            company.FireAllEmployees();
        }