package a4;

public interface Employee {

	String getFirstName();
	String getLastName();
	String getJobTitle();
	int getID();
	double getGrossYearlyIncome();
	double getNetYearlyIncome();
	double getTaxableIncome();
	double getTaxesWithheld();
	
}