public class Driver {


	private Employee employee;

	private EmployeeList myList;
	
	public static void main(String[] args) {
		
          new Driver();
	}
	
	public Driver() {
		
		employee = new Employee("Forth",8292328111L,10.25,'m');
		
		myList = new EmployeeList();
		
		
		System.out.println(myList.add(employee));
		
		System.out.println(myList.add(new Employee("Fifth",9092328141L,19,'m')));
		
		System.out.println(myList.add(new Employee("First",1692328711L,18.67,'m')));
		
		System.out.println(myList.add(new Employee("Third",3192328111L,23.56,'f')));
		
		System.out.println(myList.add(new Employee("Second",2192328111L,13.76,'m')));
		
		System.out.println(myList.remove(new Employee("Fifth",9092328141L,19,'f')));
		
		myList.print();
	}

}
