Example #1
0
        public IActionResult Details(string id)
        {
            if (id == null)
            {
                return(NotFound());
            }
            var gameListModel = _httpManager.GetByID(id).Result;

            if (gameListModel == null)
            {
                return(NotFound());
            }
            //gameListModel.ScreenShotURL = _fileHandler.LoadFiles(id.ToString());

            return(View(gameListModel));
        }