コード例 #1
0
ファイル: MovieController.cs プロジェクト: lurenXYN/coreDemo
        public async Task <IActionResult> Add(Movie movie)
        {
            if (ModelState.IsValid)
            {
                await _movieServices.AddAsync(movie);
            }

            return(RedirectToAction("Index", new { cinemaId = movie.CinemaId }));
        }