示例#1
0
        public ActionResult GetMovie(int id)
        {
            var movie = _repo.GetMovie(id);

            return(Ok(movie));
        }