Exemplo n.º 1
0
 public void Next()
 {
     CurrentState = _CurrentState.Next;
 }
Exemplo n.º 2
0
 public void Back()
 {
     CurrentState = _CurrentState.Previous;
 }
Exemplo n.º 3
0
 public StateNavigationService(IRegionManager regionManager) : base(regionManager)
 {
     _CurrentState = _States.First();
     CanNext       = _CurrentState.Next != null;
 }