Ejemplo n.º 1
0
 public void Sort()
 {
     _sortingStrategy.Sort(_names);
 }
Ejemplo n.º 2
0
 public void Sort()
 {
     _strategy.Sort(_list);
 }
Ejemplo n.º 3
0
 private static void Sort(List <int> arr, SortingStrategy strategy)
 {
     strategy.Sort(arr);
 }