private void SupprimerType(object sender, RoutedEventArgs e) { Types selection = (Types)lvTypes.SelectedItem; if (selection != null) { if (MessageBox.Show($"Etes-vous sur de vouloir supprimer le type de bien {selection.Designation} de la liste ?", "Confirmation", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes) { Statics.TryCatch(() => { BDD.SupprimerType(selection); }, nameof(SupprimerType)); } } }
private void SupprimerVille(object sender, RoutedEventArgs e) { Villes selection = (Villes)lvVilles.SelectedItem; if (selection != null) { if (MessageBox.Show($"Etes-vous sur de vouloir supprimer la ville {selection.Nom} de la liste ?", "Confirmation", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes) { Statics.TryCatch(() => { BDD.SupprimerVille(selection); }, nameof(SupprimerVille)); } } }
private void SupprimerClient(object sender, RoutedEventArgs e) { Clients selection = (Clients)lvClients.SelectedItem; if (selection != null) { if (MessageBox.Show($"Etes-vous sur de vouloir supprimer le client {selection.NomComplet} de la liste ?", "Confirmation", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes) { Statics.TryCatch(() => { BDD.SupprimerClient(selection); }, nameof(SupprimerClient)); } } }
private void SupprimerBienImmobilier(object sender, RoutedEventArgs e) { BienImmobiliers selection = (BienImmobiliers)lvBienImmobiliers.SelectedItem; if (selection != null) { if (MessageBox.Show($"Etes-vous sur de vouloir supprimer le bien immobilier {selection.RueNumero} de la liste ?", "Confirmation", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes) { Statics.TryCatch(() => { BDD.SupprimerBienImmobilier(selection); }, nameof(SupprimerBienImmobilier)); } } }
private void AjouterVille(object sender, RoutedEventArgs e) { Statics.TryCatch(() => { lvVilles.SelectedItem = BDD.AjouterVille("Nouvelle Ville", "CP"); }, nameof(AjouterVille)); }
private void AjouterProprietaire(object sender, RoutedEventArgs e) { Statics.TryCatch(() => { lvProprietaires.SelectedItem = BDD.AjouterProprietaire("Nouveau", "Proprietaire", BDD.Villes.FirstOrDefault(), ""); }, nameof(AjouterProprietaire)); }
private void AjouterType(object sender, RoutedEventArgs e) { Statics.TryCatch(() => { lvTypes.SelectedItem = BDD.AjouterType("Nouveau"); }, nameof(AjouterType)); }
private void AjouterClient(object sender, RoutedEventArgs e) { Statics.TryCatch(() => { lvClients.SelectedItem = BDD.AjouterClient("Nouveau", "Client", BDD.Villes.FirstOrDefault(), ""); }, nameof(AjouterClient)); }
private void AjouterBienImmobilier(object sender, RoutedEventArgs e) { Statics.TryCatch(() => { lvBienImmobiliers.SelectedItem = BDD.AjouterBienImmobilier(DateTime.Now, BDD.Villes.FirstOrDefault(), ""); }, nameof(AjouterBienImmobilier)); }