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