main
 1using System;
 2using MoMoney.Presentation.Winforms.Resources;
 3
 4namespace momoney.presentation.views
 5{
 6    public interface INotificationIconView : IDisposable
 7    {
 8        void display(ApplicationIcon icon_to_display, string text_to_display);
 9        void opened_new_project();
10        void show_popup_message(string message);
11    }
12}