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