public void DoMatches() { var tempComp = Competidores.FindAll(comp => comp.Formas); MatchFormas matchformas = new MatchFormas(Formas, tempComp); tempComp = Competidores.FindAll(comp => comp.Sanda); MatchSanda matchsanda = new MatchSanda(tempComp); CategoriasFormas = matchformas.DoMatch(); CategoriasSanda = matchsanda.DoMatch(); }
public List <Competidor> CompetidoresAusentes() { return(Competidores.FindAll(competidor => competidor.IsHere == false)); }
public List <Competidor> GetCompetidoresEscuela(int index) { String nombre = Escuelas.ToArray()[index].Name; return(Competidores.FindAll(comp => comp.Escuela.Name.Equals(nombre))); }