private double _monthlySalary;
private double _commission;
public const int ENGINEER = 0;
public const int SALESMAN = 1;
public const int MANAGER = 2;
public Employee(int type)
public double GetAmount()
return _monthlySalary + _commission;
return _monthlySalary + _bonus;
throw new ArgumentException("_type");