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