public override void Continue() { NextState = new InTranzitState(product_on_the_way.product); Console.WriteLine("Product is now in custody of courier"); product_on_the_way.ContinueToNextState(NextState); }
internal void ContinueToNextState(AbstractDeliveryState NextState) { product_state = NextState; product_state.Continue(); }
public override void Continue() { NextState = new DelieveredState(product_on_the_way.product); Console.WriteLine("Product has been delivered to client"); product_on_the_way.ContinueToNextState(NextState); }