// duynotes blog
public class ClientSubsystem {
  public MergeSorting enterpriseSorting;
  /* Constructors and other attributes go here */
  public void sortInput(List customerList) {
    this.enterpriseSorting.mergeSort(customerList);
  }
}