Beispiel #1
0
 public void GetIll()
 {
     state = new IllState();
 }
Beispiel #2
0
 public void GetWell()
 {
     state = new HealthyState();
 }
Beispiel #3
0
 public Human(IHumanState personState)
 {
     state = personState;
 }