private async void DelPoint() { TournamentsServices tournamentsServices = new TournamentsServices(); Point point = new Point() { Joueur = EJoueurs.Joueur1 }; await tournamentsServices.DelPointMatch(Match.Id, point); }
private async void DelPoint() { TournamentsServices tournamentsServices = new TournamentsServices(); Point point = new Point() { Joueur = EJoueurs.Joueur1 }; try { await tournamentsServices.DelPointMatch(Match.Id, point); } catch (Exception e) { SetGeneralErrorMessage(e); } }