Exemplo n.º 1
0
 protected BaseStateExecutor(ISCInputManager scInputManager, CalculatorStreamReaderState currentState)
 {
     _scInputManager = scInputManager;
     CurrentState    = currentState;
 }
Exemplo n.º 2
0
 public StateExecutorFactory(ISCInputManager scInputManager)
 {
     _scInputManager = scInputManager;
 }
Exemplo n.º 3
0
 public ReadDigitStateExecutor(ISCInputManager scInputManager) : base(scInputManager,
                                                                      CalculatorStreamReaderState.ReadDigit)
 {
 }
Exemplo n.º 4
0
 public ReadOperationStateExecutor(ISCInputManager scInputManager) : base(scInputManager,
                                                                          CalculatorStreamReaderState.ReadOperation)
 {
 }