public void Quit(Employee employee) //Implement the Quit() method in any way you choose.
        {
            bool canQuit = true;            //saying the employee can quit at anytime

            Console.WriteLine($"Can this person quit anytime: {canQuit}");
        }