namespace Employees;
///
/// Represents an employee who is manager of a department
///
///
public sealed class Manager : OfficeEmployee
{
///
/// Creates a new manager
///
/// Name of the manager
/// Gender of the manager
/// Department of the manager
/// Monthly base salary of the manager
public Manager(string name, Gender gender, string department,
decimal monthlySalary) : base(name, gender, department, monthlySalary) { }
///
/// Gets the actual salary for the manger, which is higher than the base salary
///
public override decimal Salary => -1M; // TODO
public override string ToString() => string.Empty; // TODO
}