Esempio n. 1
0
        static void Main(string[] args)
        {
            Gerente chefe = new Gerente();

            chefe.Trabalhar("Sistema atendimento ao usuário");
            Console.ReadLine();
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            var gerente = new Gerente();

            gerente.Trabalhar("Sistema de atendimento ao usuário");

            Console.ReadLine();
        }