private void Gravar_Button(object sender, RoutedEventArgs e) { if (LeituraController.Add(int.Parse(valor.Text), contrato) != null) { MessageBox.Show("Leitura realizada com sucesso", "Quiosque", MessageBoxButton.OK); this.NavigationService.Navigate(new Leituras()); } else { MessageBox.Show("Ocorreu um erro, tente novamente", "Quiosque", MessageBoxButton.OK); this.NavigationService.Navigate(new Leituras()); } }