main
 1using gorilla.commons.utility;
 2using Gorilla.Commons.Utility;
 3using momoney.presentation.presenters;
 4using momoney.service.infrastructure.updating;
 5
 6namespace momoney.presentation.views
 7{
 8    public interface ICheckForUpdatesView : IView<ICheckForUpdatesPresenter>, Callback<ApplicationVersion>
 9    {
10        void display();
11        void downloaded(Percent percentage_complete);
12        void update_complete();
13        void close();
14    }
15}