public QuickSortingService(IArrayDataRepo repo)
 {
     _fileRepo = repo;
 }
 public SortingServiceTest()
 {
     _repo   = new NumArrayDataFileRepo();
     _sorter = new QuickSortingService(_repo);
 }