Exemplo n.º 1
0
        public IHttpActionResult GetSpeciesByGameId(int gameId)
        {
            SpeciesService speciesService = CreateSpeciesService();
            var            species        = speciesService.GetSpeciesByGameId(gameId);

            foreach (SpeciesListItem h in species)
            {
                if (h.HistoryId != null)
                {
                    h.HistoryUrl = "https://" + HttpContext.Current.Request.Url.Authority + "/api/History?HistoryId=" + h.HistoryId;
                }
            }
            return(Ok(species));
        }