Exemplo n.º 1
0
 public QuickSortingService(IArrayDataRepo repo)
 {
     _fileRepo = repo;
 }
Exemplo n.º 2
0
 public SortingServiceTest()
 {
     _repo   = new NumArrayDataFileRepo();
     _sorter = new QuickSortingService(_repo);
 }