Example #1
0
 public Context(Strategy strategy)
 {
     _strategy = strategy;
 }
 public CustomArray(Strategy strategy)
 {
     _strategy = strategy;
     _array = new[] {5,7,2,6,10,1,3,8,9};
 }
Example #3
0
 // Constructor
 public Context(Strategy strategy)
 {
     this._strategy = strategy;
 }
Example #4
0
 public StrategyRunner(Strategy strategy)
 {
     _strategy = strategy;
 }