public void callAutoService()
        {
            BMWAutoService.getService();

            FordAutoService.getService();

            HondaAutoService.getService();
        }
Exemplo n.º 2
0
        public void callAutoService()
        {
            // get bmw's auto service
            bmwAutoService.getService();

            // get ford's auto service
            fordAutoService.getService();

            // get honda's auto service
            hondaAutoService.getService();
        }