Write a C# program that includes an Employeeclass that can be used to calculate and print thetake-home pay for a commissioned sales employee. Items to includeas data members are employee number, first name, last name, andtotal sales. All employees receive 9% of the total sales of themonth. Federal tax rate is 18%. Retirement contribution is 10%.Social Security tax rate is 6%. Use appropriate constants, designan object-oriented solution, and write constructors. Include atleast one mutator and one accessor method; provide properties forthe other data members. Create a second class, or a driverprogram, to test your design. Allow the user to entervalues
OR
OR