Ejemplo n.º 1
0
        public IHttpActionResult Get(Guid id)
        {
            var player = _repo.GetPlayerById(id);

            if (player == null)
            {
                return(NotFound());
            }

            return(Ok(player));
        }