protected override void InitPresenter()
 {
     SecondView = (ISecondView)View;
     SecondView.SecondPresenter = this;
 }
Ejemplo n.º 2
0
 public SecondPresenter(ISecondView secondView)
 {
     _secondView = secondView;
 }