Ejemplo n.º 1
0
 public IEnumerable <Participant> GetParticipants(string gameId)
 {
     return(_storageManager.GetAllParticipants(gameId)
            .Select(p => new Participant
     {
         ParticipantId = p.RowKey,
         ParticipantName = p.ParticipantName,
         ParticipantImg = p.ParticipantImg,
         Score = p.TotalScore,
         Time = p.Time,
         GameId = gameId
     }).ToList());
 }