//File:	Employee3Client.java
import CSLib.*;
public class Employee3Client
{
	public static void main (String [] args)
	{
		//Create 2 employees, person1, who is created, but not initialized
		//and person2, who is created and initialized through the copy
		//constructor
		Employee3 person1 = new Employee3 ();
		Employee3 person2 = new Employee3 ("Bill", "Steinmetz", 50, 9);
		
		//Set attributes of person1
		person1.setName();
		person1.setHoursWorked();
		person1.setPayRate();
		person1.calculateSalary();
		
		//Calculate person2's salary
		person2.calculateSalary();
		
		//output person1 and person2 attributes
		OutputBox out = new OutputBox();
		out.setSize(550, 75);
		out.println (person1.toString());
		out.println (person2.toString());
	}
}

