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