Пример #1
0
 public virtual void BindSyncConnectManualView(ISyncConnectManualView view)
 {
     _syncConnectManualView = view;
     _syncConnectManualPresenter = Bootstrapper.GetContainer().Resolve<ISyncConnectManualPresenter>();
     _syncConnectManualPresenter.BindView(view);
     _syncConnectManualView.OnViewDestroy = (view2) =>
     {
         _syncConnectManualPresenter.ViewDestroyed();
         _syncConnectManualPresenter = null;
         _syncConnectManualView = null;
     };            
 }
Пример #2
0
 public virtual ISyncConnectManualView CreateSyncConnectManualView()
 {
     _syncConnectManualView = Bootstrapper.GetContainer().Resolve<ISyncConnectManualView>();
     return _syncConnectManualView;
 }