Example #1
0
        public IHttpActionResult Get(int id)
        {
            var movie = _movieStore.FindById(id);

            if (movie != null)
            {
                return(Ok(movie));
            }
            return(NotFound());
        }