main
 1using System.Collections.Generic;
 2
 3namespace MoMoney.Presentation.Winforms.Helpers
 4{
 5    public interface IBindableList<ItemToBindTo>
 6    {
 7        void bind_to(IEnumerable<ItemToBindTo> items);
 8        ItemToBindTo get_selected_item();
 9        void set_selected_item(ItemToBindTo item);
10    }
11}