示例#1
0
 public AtmStates MoveNext(SendMsg command)
 {
     CurrentState = GetNext(command);
     return(CurrentState);
 }
示例#2
0
 public StateTransition(AtmStates currentState, SendMsg command)
 {
     _currentState = currentState;
     _command      = command;
 }