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