Question: Create a C# application that would: -Ask your user to input the employee information -Calculate the taxes Output all the info along with the table

Create a C# application that would:
-Ask your user to input the employee information
-Calculate the taxes
Output all the info along with the table that includes:
-Paycheck number (1, c2, 3, etc. up to 24)
-Salary prior to withholding for each paycheck
-State and federal taxes for each paycheck
-Salary after withholdings
-Last line has to have all the totals for the above
First class:
Represents an Employee Tax information
Include the following characteristics: employee ID, full name, tax filing status (such as married filing separately, etc. ), monthly salary (prior to withholdings), federal and state taxes (percentages), number of pay periods per year, and monthly amount withheld for each tax
Write at least two constructors
Include properties for each of the data items
Include all the necessary calculations, including the determination of the tax percentage for each federal and state tax
Override the ToString() method to return all data members
Second class:
Tests Employee Tax class
Displays instructions to your user (a short description of your application)
Asks your user to input the information and writes it in the corresponding fields of each object
Asks your user whether another employee information needs to be entered (dowhile)
Test your class with at least three employees with different salaries within different tax brackets
Display the data from the first object using a class method (you will need some method DisplayObject()), and the other two objects via the reference to ToString() instance method.
Make sure to use modular solution (with multiple methods)
Include at least one iteration and one condition statements

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!