blob: ce2338d39bf4c2c8035d28a4ca4a097e9097b1fc (
plain)
1
2
3
4
5
6
7
8
9
|
using System.Collections.Generic;
namespace DesignPatterns.Adapter {
public interface IDropDownListAdapter {
void BindTo( IEnumerable< IDropDownListItem > pairs );
IDropDownListItem SelectedItem { get; }
}
}
|