async void Delete() { var response = await dialogService.ShowConfirm( "Confirm", "Are you sure to delete this Client Groupe ?"); if (!response) { return; } await ClientGroupeViewModel.GetInstance().Delete(this); }
public ClientGroupePage() { InitializeComponent(); BindingContext = new ClientGroupeViewModel(); }