Assignment
Write a program that simulates a very simple HR application for a company.
Your program should be able to:
1. List all the current employees
2. Add a new employee
3. Remove a current employee
4. Edit current employee
You will need to create a class to instantiate a Person object (or Employee object).
In the beginning, the console output should ask the user what they want to do (list, add, remove). The program should keep all the employees in an appropriate storage object of your choice (List, Collection, Array, etc.), but make sure it is not limited to a maximum amount of people.
The Employee class should have at minimum the following fields:
• First Name
• Last Name
• Id
• Date of Birth
• Position
• Salary.