//File:	EmployeeClient.java
import CSLib.*;
public class EmployeeClient
{
	public static void main (String [] args)
	{
		//Create a new Employee object
		Employee person = new Employee();
		

		//define the attributes of person
		person.setName();
		person.setHoursWorked();
		person.setPayRate();
		
		//output the attributes of person
		OutputBox out = new OutputBox();
		out.setSize(550, 75);
		out.println (person.getName() + " worked " + person.hoursWorked
					+ " hours at $ " + person.payRate
					+ " per hour and earned $ " + person.salary()
					+ ".");
	}
}
