1. Create an Employee class with attributes:
- name (string)
- salary (double)
- position (string)
2. Include getter and setter methods, and a ShowData method.
3. Create a Manager class that extends Employee, adding:
- bonus (double)
- Override the ShowData method to include the bonus.
4. Create a Company class to manage employees:
- Store employees in a list.
- Provide methods to add, remove, and display employees.
5. Implement the Main method to test the functionality.
Create a class structure for managing employees and a company, implementing inheritance and object-oriented principles.
using System;
using System.Collections.Generic;
// Base class Employee
class Employee
{
// Attributes for the employee's name, salary, and position
private string name;
private double salary;
private string position;
// Constructor to initialize employee data
public Employee(string name, double salary, string position)
{
this.name = name;
this.salary = salary;
this.position = position;
}
// Method to display employee details
public virtual void ShowData()
{
Console.WriteLine($"Employee: {name}, Position: {position}, Salary: {salary} USD");
}
// Getters and setters
public string GetName() => name;
public double GetSalary() => salary;
public string GetPosition() => position;
public void SetSalary(double salary) => this.salary = salary;
}
// Subclass Manager, inherits from Employee
class Manager : Employee
{
// Additional attribute for the manager's bonus
private double bonus;
// Constructor to initialize manager data
public Manager(string name, double salary, string position, double bonus)
: base(name, salary, position)
{
this.bonus = bonus;
}
// Override ShowData method to include the bonus
public override void ShowData()
{
Console.WriteLine($"Manager: {GetName()}, Position: {GetPosition()}, Salary: {GetSalary()} USD, Bonus: {bonus} USD");
}
// Getters and setters for the bonus
public double GetBonus() => bonus;
public void SetBonus(double bonus) => this.bonus = bonus;
}
// Company class to manage employees
class Company
{
// List to store employees
private List employees = new List();
// Method to add an employee to the list
public void AddEmployee(Employee employee)
{
employees.Add(employee);
}
// Method to display all employees
public void ShowAllEmployees()
{
Console.WriteLine("\nCompany Employees:");
foreach (var employee in employees)
{
employee.ShowData();
}
}
}
// Main program
class Program
{
static void Main()
{
// Create a company
Company company = new Company();
// Add employees
company.AddEmployee(new Employee("Alice Johnson", 50000, "Software Engineer"));
company.AddEmployee(new Employee("Bob Smith", 45000, "Designer"));
company.AddEmployee(new Manager("Charlie Brown", 70000, "Project Manager", 10000));
// Display all employees
company.ShowAllEmployees();
}
}
Output
Company Employees:
Employee: Alice Johnson, Position: Software Engineer, Salary: 50000 USD
Employee: Bob Smith, Position: Designer, Salary: 45000 USD
Manager: Charlie Brown, Position: Project Manager, Salary: 70000 USD, Bonus: 10000 USD