Example #1
0
        public ActionResult FindMessage(int id)
        {
            var weather = _dbContext.FindMessage(id);

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

            return(View(weather));
        }