Exemple #1
0
        private static INavigationService GetNavigationService()
        {
            var navigationService = new EIDClient.Core.ViewModel.NavigationService();

            navigationService.Configure("AnalysisDetails", typeof(Views.AnalysisDetailsPage));
            navigationService.Configure("Analysis", typeof(Views.AnalysisPage));
            navigationService.Configure("Main", typeof(Views.MainPage));

            return(navigationService);
        }
Exemple #2
0
        private static INavigationService GetNavigationService()
        {
            var navigationService = new EIDClient.Core.ViewModel.NavigationService();

            navigationService.Configure("EmitentList", typeof(Views.EmitentListPage));
            navigationService.Configure("SecurityList", typeof(Views.SecurityListPage));
            navigationService.Configure("EmitentDetails", typeof(Views.EmitentDetailsPage));
            navigationService.Configure("SecurityDetails", typeof(Views.SecurityDetailsPage));
            navigationService.Configure("FinancialEdit", typeof(Views.FinancialEditPage));
            navigationService.Configure("Robot", typeof(Views.RobotControlPage));
            navigationService.Configure("Diary", typeof(Views.DiaryPage));
            navigationService.Configure("Portfolio", typeof(Views.PortfolioPage));
            navigationService.Configure("Main", typeof(Views.MainPage));

            return(navigationService);
        }