Interaction logic for ApiManagementIngestView.xaml
Inheritance: System.Windows.Controls.UserControl
        public ApiManagementIngestViewModel(ConnectedServiceProviderContext context,
            ConnectedServiceInstance instance)
        {
            Context = context;
            Title = Resources.Page2Title;
            Description = Resources.Page2Subtitle;
            Legend = Resources.Page2Legend;

            View = new ApiManagementIngestView
            {
                DataContext = this
            };

            _dispatcher = Dispatcher.CurrentDispatcher;

            Products = new ObservableCollection<ApiManagementProduct>();
            Products.CollectionChanged += Products_CollectionChanged;
            Instance = instance;
        }