main
 1using MoMoney.Presentation.Core;
 2using momoney.presentation.views;
 3
 4namespace momoney.presentation.presenters
 5{
 6    public interface IGettingStartedPresenter : IContentPresenter
 7    {
 8    }
 9
10    public class GettingStartedPresenter : ContentPresenter<IGettingStartedView>, IGettingStartedPresenter
11    {
12        public GettingStartedPresenter(IGettingStartedView view) : base(view)
13        {
14        }
15
16        public override void run()
17        {
18            view.attach_to(this);
19        }
20    }
21}