Exemplo n.º 1
0
        static void Main(string[] args)
        {
            DigitalPhone myDigitalPhone = new DigitalPhone();

            myDigitalPhone.Ring();
            myDigitalPhone.VoiceMail();

            DigitalCellPhone myDigitalCellPhone = new DigitalCellPhone();

            myDigitalCellPhone.Ring();
            myDigitalCellPhone.VoiceMail();
        }