private async void ExecuteLogin()
        {
            connection = HealthVaultConnectionFactory.Current.GetOrCreateSodaConnection(await GetHealthVaultConfiguration());

            await connection.AuthenticateAsync();

            ((Frame)Window.Current.Content).Navigate(typeof(Views.Navigation.HubPage), new NavigationParams()
            {
                Connection = connection
            });
        }