From e4f55662f5c6e7ceff25e4bc8d3ac6fa9b69ae95 Mon Sep 17 00:00:00 2001 From: victor perez ngounou Date: Mon, 24 Oct 2022 11:16:41 +0200 Subject: [PATCH] . --- Sources/BowlingApp/Match.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Sources/BowlingApp/Match.cs b/Sources/BowlingApp/Match.cs index 178b468..95df7b1 100644 --- a/Sources/BowlingApp/Match.cs +++ b/Sources/BowlingApp/Match.cs @@ -9,6 +9,9 @@ using System.Threading.Tasks; namespace BowlingApp { + /// + /// This class is used to create a match + /// public static class Match { #region Méthodes @@ -48,7 +51,6 @@ namespace BowlingApp Partie partie = new Partie(joueur); Manager manager = new Manager(new EquipeDbDataManager(), new PartieDbDataManager(), new JoueurDbDataManager()); manager.AddJoueur(joueur); - equipes.ForEach(item => manager.AddEquipe(item)); Lancer(partie, saissiseur); manager.AddPartie(partie); }