private async void BaixarListagemClick(object sender, RoutedEventArgs e)
        {
            HttpClient httpClient = new HttpClient();
            httpClient.BaseAddress = new Uri(ip);
            var response = await httpClient.GetAsync("/lojarest/api/teste?entrada=loja");
            var str = response.Content.ReadAsStringAsync().Result;
            List<string> cmds = JsonConvert.DeserializeObject<List<string>>(str);
            System.Diagnostics.Debug.WriteLine("############################Dados brutos## " + cmds.Count());

            DataBaseHelperAccess AcessoBanco = new DataBaseHelperAccess();
            foreach (var c in cmds)
            {
               System.Diagnostics.Debug.WriteLine("******************************Dados Trabalhados## " + c);
               AcessoBanco.criando_populando(c);
            }
            MessageDialog msgbox = new MessageDialog("Dados carregados localmente.");
            await msgbox.ShowAsync();
            //List<Models.Fabricante> obj = JsonConvert.DeserializeObject<List<Models.Fabricante>>(str);
            //ListBoxFabricantes.ItemsSource = obj;
            //this.GravandoListagemLocal(obj);
        }
        private void LocalClick(object sender, RoutedEventArgs e)
        {
            DataBaseHelperAccess AcessoBanco = new DataBaseHelperAccess();
            List<Fabricante> fabricantes = AcessoBanco.LendoFabricantesLocal();
            System.Diagnostics.Debug.WriteLine("############################Dados LOCAIS## " + fabricantes[0].descricao);
            ListBoxFabricantes.ItemsSource = fabricantes;


        }
 private void CarregandoListagemLocal()
 {
     DataBaseHelperAccess AcessoBanco = new DataBaseHelperAccess();
     ListBoxFabricantes.ItemsSource = AcessoBanco.LendoFabricantesLocal();
 }