示例#1
0
 protected MvxTvosSetup(IMvxApplicationDelegate applicationDelegate, IMvxTvosViewPresenter presenter)
 {
     _presenter           = presenter;
     _applicationDelegate = applicationDelegate;
 }
示例#2
0
 public virtual void PlatformInitialize(IMvxApplicationDelegate applicationDelegate, IMvxTvosViewPresenter presenter)
 {
     _presenter           = presenter;
     _applicationDelegate = applicationDelegate;
 }
        public static MvxTvosSetupSingleton EnsureSingletonAvailable(IMvxApplicationDelegate applicationDelegate, IMvxTvosViewPresenter presenter)
        {
            var instance = EnsureSingletonAvailable <MvxTvosSetupSingleton>();

            instance.PlatformSetup <MvxTvosSetup>()?.PlatformInitialize(applicationDelegate, presenter);
            return(instance);
        }
 public MvxTvosViewDispatcher(IMvxTvosViewPresenter presenter)
 {
     _presenter = presenter;
 }
 public MvxTvosViewDispatcher(IMvxTvosViewPresenter presenter)
 {
     this._presenter = presenter;
 }
示例#6
0
 public Setup(IMvxApplicationDelegate applicationDelegate, IMvxTvosViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
示例#7
0
 protected MvxTvosSetup(IMvxApplicationDelegate applicationDelegate, IMvxTvosViewPresenter presenter)
 {
     this._presenter = presenter;
     this._applicationDelegate = applicationDelegate;
 }