Package main.company

Examples of main.company.Manager


                        }else{
                            System.out.println("\n\nDriver wasn't added to company! Try again!\n");
                        }
                        break;
                    case 3:
                        Manager manager = new Manager(keyboard.readLine(),Double.parseDouble(keyboard.readLine()),Double.parseDouble(keyboard.readLine()));
                        company.addWorker(manager);
                        if(company.addWorker(manager)){
                            System.out.println("\n\nManager was added to company.\n");
                        }else{
                            System.out.println("\n\nManager wasn't added to company! Try again!\n");
View Full Code Here

TOP

Related Classes of main.company.Manager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.