Exemplo n.º 1
0
 public Setup(MvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Exemplo n.º 2
0
 public Setup(MvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Exemplo n.º 3
0
 protected MvxIosDialogSetup(IMvxApplicationDelegate applicationDelegate,
                               IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Exemplo n.º 4
0
 public virtual void PlatformInitialize(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
 {
     ApplicationDelegate = applicationDelegate;
     _presenter          = presenter;
 }
Exemplo n.º 5
0
 protected MvxIosSetup(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
 {
     this._presenter = presenter;
     this._applicationDelegate = applicationDelegate;
 }
Exemplo n.º 6
0
 public MvxModalPresentationControllerDelegate(IMvxIosViewPresenter presenter, UIViewController viewController, MvxModalPresentationAttribute attribute)
 {
     _presenter      = presenter;
     _viewController = viewController;
     _attribute      = attribute;
 }
Exemplo n.º 7
0
 public MvxIosViewDispatcher(IMvxIosViewPresenter presenter)
 {
     this._presenter = presenter;
 }
        public static MvxIosSetupSingleton EnsureSingletonAvailable(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
        {
            var instance = EnsureSingletonAvailable <MvxIosSetupSingleton>();

            instance.PlatformSetup <MvxIosSetup>()?.PlatformInitialize(applicationDelegate, presenter);
            return(instance);
        }
Exemplo n.º 9
0
 public Setup(IMvxApplicationDelegate appDelegate, IMvxIosViewPresenter presenter) : base(appDelegate, presenter)
 {
     mAppDelegate = appDelegate;
     mPresenter   = presenter;
 }
Exemplo n.º 10
0
 public MvxIosViewDispatcher(IMvxIosViewPresenter presenter)
 {
     _presenter = presenter;
 }
 protected NinjectMvxIosSetup(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter) : base(applicationDelegate, presenter)
 {
 }
Exemplo n.º 12
0
 public MvxPopoverPresentationControllerDelegate(IMvxIosViewPresenter presenter)
 {
     _presenter = presenter;
 }
Exemplo n.º 13
0
 protected MvxIosSetup(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
 {
     _presenter           = presenter;
     _applicationDelegate = applicationDelegate;
 }
Exemplo n.º 14
0
 public MvxPopoverDelegate(IMvxIosViewPresenter presenter)
 {
     _presenter = presenter;
 }
Exemplo n.º 15
0
 public Setup(IMvxApplicationDelegate applicationDelegate, UIWindow window, IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Exemplo n.º 16
0
 protected MvxIosDialogSetup(IMvxApplicationDelegate applicationDelegate,
                             IMvxIosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }