public Sorting(int[] ar, ISortingType sortingType)
 {
     _sortingType = sortingType;
     _ar = (int[])ar.Clone(); ;
 }
 public void SetSortingType(int[] ar, ISortingType sortingType)
 {
     _sortingType = sortingType;
     _ar = (int[])ar.Clone(); ;
 }