public BaseVM(INavigationService navigation, Core.Interfaces.IPlatform platform

          )
        {
            _navigationService = navigation;
            Platform = platform;
        }
Example #2
0
        public BaseVM(INavigationService navigation, Core.Interfaces.IPlatform platform

                      )
        {
            _navigationService = navigation;
            Platform           = platform;
        }
Example #3
0
 public SecondPage(Interfaces.INavigationService navigation, Core.Interfaces.IPlatform platform)
     : base(navigation, platform)
 {
     PageTitle = "SecondPage!!!";
 }
Example #4
0
 public Home(Interfaces.INavigationService navigation, Core.Interfaces.IPlatform platform) : base(navigation, platform)
 {
     PageTitle = "Bootstraping project!";
 }