Beispiel #1
0
        public Participant[] getParticipantsByScore(int idStage)
        {
            Console.WriteLine("Get participants by score from stage : " + idStage);
            IList <Participant> participants = (List <Participant>)participantRepo.GetParticipantsByScore(idStage);

            return(participants.ToArray());
        }