Exemplo n.º 1
0
        public ActionResult <IEnumerable <PlayerReadDto> > GetAllPlayers()
        {
            var playerItems = _repository.GetAllPlayers();

            return(Ok(_mapper.Map <IEnumerable <PlayerReadDto> >(playerItems)));
        }
Exemplo n.º 2
0
 public async Task <IList <Player> > GetAllPlayers()
 {
     return(await repo.GetAllPlayers());
 }