package example;

/**
 * Interface to swap courses.
 */
public interface Swap {
  /**
   * Swaps the instructors for the courses.
   */
  public void swap(Course a, Course b);
}
