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