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