static void Main(string[] args)
        {
            TestPolymorphic t = new TestPolymorphic();

            t.LoadEmployees();
            t.DoPayroll();
        }
 static void Main(string[] args)
 {
     TestPolymorphic t = new TestPolymorphic();
     t.LoadEmployees();
     t.DoPayroll();
 }