Exemplo n.º 1
0
        public async Task <IActionResult> Add(Movie movie)
        {
            if (ModelState.IsValid)
            {
                await _movieServices.AddAsync(movie);
            }

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