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