Example #1
0
 public AlgorithmsServicesTest()
 {
     service = new AlgorithmServices();
 }
Example #2
0
 public ReverseWordsController(IAlgorithmServices algorithmServices)
 {
     this.algorithmServices = algorithmServices;
 }
 public FibonacciController(IAlgorithmServices algorithmServices)
 {
     this.algorithmServices = algorithmServices;
 }