package march06; public class Node { public Node Next; public Employee Data; public Node(Employee Data){ this.Next = null; this.Data = Data; } }