Interaction logic for MainPage.xaml
Inheritance: System.Windows.Controls.UserControl
        public SelectApiAppViewModel(ConnectedServiceProviderContext context,
            ConnectedServiceInstance instance)
        {
            Context = context;
            Title = Resources.Page1Title;
            Description = Resources.Page1Subtitle;
            Legend = Resources.Page1Legend;

            View = new SelectApiAppView
            {
                DataContext = this
            };

            _dispatcher = Dispatcher.CurrentDispatcher;

            ApiApps = new List<ApiAppResource>();
            Instance = instance;
        }