A) Create Console Application project WorkerPerson in VS.
Add class Person with code from the previous
task to the project.
Add new class Worker, which inherits class Person.
Class Worker should consist next members:
a) fields: workplace and salary.
b) two properties for access to these fields
c) constructor for initialisation of all fields (remember about fields in the base class)
d) method OutPut() for writing all fields into Console
e) method SalaryIncrease() for increasing salary by formula salary=salary+Age
In the method Main() create array of Workers and fill it with data from Console by calling appropriate constructor.
Output all Workers with Age more then 20 years.
Increase salary for workers, whose salary is more then 200.Output result.
Sort array of Workers by name (for this task class Worker should implement interface IComparable). Output result.