package employeeStuff;

/*
 * An abstract class that is the super class for employee classes
 * @author Bill Kraynek
 */

public abstract class Employee extends Person {
	
	public Employee(String id,String first, String last) {
		super(id,first,last);
	}

	public abstract double pay();

} // end Employee




