//methods
public double CalcWages(double hw)
{
double wages = hw * payRate;
return CalcTaxes(wages);
}
private double CalcTaxes(double Wages)
{
return (Wages * 0.85);
}
Showing posts with label Employee. Show all posts
Showing posts with label Employee. Show all posts
Thursday, May 7, 2009
Allan's Classwork - Employee class
Just change the following codes to the Employee class file:
Subscribe to:
Posts (Atom)