Create a class to hold all deatils of employee such as eno,ename,salary,designation,department and store it using collection and perform the operations mentioned below using methods provided in collection Generate a menu
- Add Emp
- View All employees
- Remove Employees
- Clear Data
- Change salary
- Search Employee 7.View Dept wise Employee List
- Exit
This project uses HashMap, ArrayList to store Employee objects It demostrate the use of methods like add(),contains(),getKey() etc to perform relevent operations.
It uses for each and iterators to traverse data
Employee: This class is for ManageEmployee: This class performs data manipulation operation (insert,delete,update) on employee data DashboardEmployee: This class deals with user interaction.. take user input and call the relevant methods of ManageEmployee Class to perform specified operation