main
 1using System.Windows.Forms;
 2
 3namespace MoMoney.Presentation.Model.Menu
 4{
 5    public interface IToolbarButton
 6    {
 7        void add_to(ToolStrip collection);
 8        void refresh();
 9    }
10}