Example #1
0
 public void ResetState(ShoppingCommand sell, ShoppingCommand buy)
 {
     sell = sellItems;
     buy  = buyItems;
 }
Example #2
0
 public Memento(ShoppingCommand sell, ShoppingCommand buy)
 {
     sellItems = sell.Clone() as ShoppingCommand;
     buyItems  = buy.Clone() as ShoppingCommand;
 }