コード例 #1
0
        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();
        }
コード例 #2
0
 public List <Competidor> CompetidoresAusentes()
 {
     return(Competidores.FindAll(competidor => competidor.IsHere == false));
 }
コード例 #3
0
        public List <Competidor> GetCompetidoresEscuela(int index)
        {
            String nombre = Escuelas.ToArray()[index].Name;

            return(Competidores.FindAll(comp => comp.Escuela.Name.Equals(nombre)));
        }