예제 #1
0
파일: State.cs 프로젝트: Khanchai/GoF
 public override void Handle(Context context)
 {
     context.State = new ConcreteStateB();
 }
예제 #2
0
파일: State.cs 프로젝트: Khanchai/GoF
 public abstract void Handle(Context context);