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); }