public static void RunExample()
        {
            Employee junior  = new Junior("Laurel", "Anderson", null);
            Employee manager = new Manager("Brian", "Hoscheit", null);

            junior.SetSuccessor(manager);

            junior.Approve(1001);
        }