コード例 #1
0
 //Will be used by the unit test
 public MoviesController(MovieStoreFixDBContext dbContext)
 {
     db = dbContext;
 }
コード例 #2
0
 //Dependency Injection using constructor
 //Used when the application is executed
 public MoviesController()
 {
     db = new MovieStoreFixDBContext();
 }