using System.Collections.Generic; namespace Sorting { public interface ISortable { List Sort(List list); } }