Fix les joueurs Forfait

This commit is contained in:
2021-07-20 01:07:40 +02:00
parent d36c5233ed
commit 9c71e363f6

View File

@@ -80,6 +80,8 @@ namespace LaDOSE.Business.Service
var allParticipent = tournaments.SelectMany(e => e.Participents).Distinct((a, b) => a.Name == b.Name) var allParticipent = tournaments.SelectMany(e => e.Participents).Distinct((a, b) => a.Name == b.Name)
.ToList(); .ToList();
allParticipent.RemoveAll(e => e.Name.StartsWith("[FORFAIT]"));
//USELESS //USELESS
//foreach (var participent in allParticipent) //foreach (var participent in allParticipent)
//{ //{