Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            StateTransition other = (StateTransition)obj;

            return(other != null && this.CurrentState == other.CurrentState && this.Command == other.Command);
        }
Ejemplo n.º 2
0
 public CombinedTransitionState(StateTransition trans, ProcessState nextState)
 {
     this.Transition = trans;
     this.NextState  = nextState;
 }