コード例 #1
0
ファイル: WeatherController.cs プロジェクト: pati97/UWPapp
        public ActionResult FindMessage(int id)
        {
            var weather = _dbContext.FindMessage(id);

            if (weather == null)
            {
                return(HttpNotFound());
            }

            return(View(weather));
        }