C# (Thank you in advance)
Create an Employee class with five fields: first name, last
name, workID, yearStartedWked, and initSalary. It includes
constructor(s) and properties to initialize values for all
fields.
Create an interface, SalaryCalculate, class that includes two
functions: first,CalcYearWorked() function, it takes one parameter
(currentyear) and calculates the number of year the worker has been
working. The second function, CalcCurSalary() function that
calculates the current year salary.
Create a Worker classes that is derived from Employee and
SalaryCalculate...