Example #1
0
 public OfferMatchedState(Ridesharing.StateBase previous, IMatchedRideRelatedRequest match)
     : base(previous, match)
 {
 }
Example #2
0
 protected override void HandleMatched(IMatchedRideRelatedRequest match)
 {
     TransitionTo(new OfferMatchedState(this, match));
 }
 public WaitingForConfirmedState(Ridesharing.StateBase previous, IMatchedRideRelatedRequest match)
     : base(previous)
 {
     this.match = match;
 }
 protected abstract void HandleMatched(IMatchedRideRelatedRequest match);
Example #5
0
 protected AbstractMatchedState(Ridesharing.StateBase previous, IMatchedRideRelatedRequest match)
     : base(previous)
 {
     this.match = match;
 }