Ejemplo n.º 1
0
 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);
 }
Ejemplo n.º 2
0
 internal void ContinueToNextState(AbstractDeliveryState NextState)
 {
     product_state = NextState;
     product_state.Continue();
 }
Ejemplo n.º 3
0
 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);
 }
Ejemplo n.º 4
0
 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);
 }
Ejemplo n.º 5
0
 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);
 }
Ejemplo n.º 6
0
 internal void ContinueToNextState(AbstractDeliveryState NextState)
 {
     product_state = NextState;
     product_state.Continue();
 }