using System.Collections.Generic; namespace DesignPatterns.Adapter { public interface IDropDownListAdapter { void BindTo( IEnumerable< IDropDownListItem > pairs ); IDropDownListItem SelectedItem { get; } } }