public Person()
 {
     Name          = "over";
     Age           = 9000;
     introBehavior = new IntroductionBehavior(name, age);     // note that we pass the SharedValues
 }
 public Person()
 {
     Name          = "over";
     Age           = 9000;
     introBehavior = new IntroductionBehavior(this);
 }