예제 #1
0
 public QuickSortingService(IArrayDataRepo repo)
 {
     _fileRepo = repo;
 }
예제 #2
0
 public SortingServiceTest()
 {
     _repo   = new NumArrayDataFileRepo();
     _sorter = new QuickSortingService(_repo);
 }