Package business.entities

Examples of business.entities.Manager.manage()


    employees.add(manager);
    employees.add(assistant);
   
    manager.setAssistant(assistant);
    manager.manage();
   
    System.out.println(manager.getSalary());
    System.out.println(assistant.getSalary());
   
    manager.charge();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.