//Will be used by the unit test public MoviesController(MovieStoreFixDBContext dbContext) { db = dbContext; }
//Dependency Injection using constructor //Used when the application is executed public MoviesController() { db = new MovieStoreFixDBContext(); }