// Arup Guha
// 4/5/07
// Class for Spring 2007 COP 3330 Assignment #5

public class PhoneStaff extends HourlyEmployee {
	
	// Extra information needed for PhoneStaff.
	protected double commissionpersale;
	protected int numsales;
	
	// Sets information like a regular HourlyEmployee, and assigns
	// the commission per sale and sets the number of sales to 0.
	public PhoneStaff(String f, String l, int daysv, double rate, 
						  int hrsworked, double orate, int oworked,
						  double cps) {
						  	
	}
	
	// Returns the total income of the current object, which is just a
	// regular HourlyEmployee's total income, PLUS, money from 
	// commissions, which is just the number of sales times the commission
	// per sale. 
	protected double totalincome() {
		
	}
	
	// Sets the number of sales to ns.
	public void setnumsales(int ns) {
		
	}
	
	// Same as for a regular HourlyEmployee, but PhoneStaff only get
	// ONE additional day of vacation instead of three.
	protected void mature() {
	
	}
	
}