상속: AbstractDeliveryState
예제 #1
0
 public override void Continue()
 {
     NextState = new WithCourierState(productToDeliver.product);
     Console.WriteLine("Product order is now registered");
     productToDeliver.ContinueToNextState(NextState);
 }
예제 #2
0
 public override void Continue()
 {
     NextState = new WithCourierState(productToDeliver.product);
     Console.WriteLine("Product order is now registered");
     productToDeliver.ContinueToNextState(NextState);
 }