using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.EntityFrameworkCore; using Repo.Data; using Repo.Models; using Repo.DAL; namespace Repo.Controllers { public class MoviesController : Controller { private IRepo _repo; public MoviesController(IRepo repo) //★←DI { _repo = repo; } public IActionResult Index() { return View(_repo.GetMovies()); } ・・・