public Queue <long> Generate(int rounds, IFibonacciStrategy strategy)
 {
     return(strategy.Generate(rounds));
 }
 public Queue <long> Generate(int rounds)
 {
     return(_strategy.Generate(rounds));
 }