Create a class called Employee with name, IDNo, address, and phone number as attributes. Create the setter and getter methods for the class. Create a customer method that calculates the total weekly wage, and another that calculates the tax. Both methods should receive arguments to do the calculations.
Create an EmployeeTester class to test the Employee class. Create at least two employees.
The Employee class must have a parameterized constructor and a tellAboutSelf methods. it should run correct.