Ejemplo n.º 1
0
 public GamesController(YourGameOfTheYearContext context)
 {
     _context = context;
 }
 public ReviewViewComponent(YourGameOfTheYearContext context)
 {
     this._context = context;
 }
 public TopTenViewComponent(YourGameOfTheYearContext context)
 {
     this._context = context;
 }
 public TopTenRecommendedViewComponent(IRepository repository, YourGameOfTheYearContext context)
 {
     this._context    = context;
     this._repository = repository;
 }
 public UserReviewsController(YourGameOfTheYearContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public Repository(YourGameOfTheYearContext context)
 {
     this._context = context;
 }