Author: Tonia B. Biokoro
Email: [email protected]
Application to hold details of employees that belong to an organisation.
The organisation has employees who have the following roles: manager, developer and salesperson.
The Employee class is an abstract class that holds information that is true for the Manager, Sales, and Development classes.
The Employee class is inherited by all employee related classes.
The Manager, Development and Sales classes contain information pertaining to each specific type of employee, e.g., number of projects the development department has delivered by the end of the week.
Use the main method to test the code.