Exemple #1
0
 public override StrategyContext CreateContext(CryptStrategyBase cryptStrategyBase)
 {
     return(new StrategyContext(cryptStrategyBase));
 }
Exemple #2
0
 public StrategyContext(CryptStrategyBase strategy)
 {
     this._strategy = strategy;
 }
Exemple #3
0
 public abstract StrategyContext CreateContext(CryptStrategyBase cryptStrategyBase);
Exemple #4
0
 //for lazy lads
 public StrategyContext()
 {
     this._strategy = new BKKCryptStrategy();
 }