Inheritance: AbstractDeliveryState
Esempio n. 1
0
 public override void Continue()
 {
     NextState = new WithCourierState(productToDeliver.product);
     Console.WriteLine("Product order is now registered");
     productToDeliver.ContinueToNextState(NextState);
 }
Esempio n. 2
0
 public override void Continue()
 {
     NextState = new WithCourierState(productToDeliver.product);
     Console.WriteLine("Product order is now registered");
     productToDeliver.ContinueToNextState(NextState);
 }