Exemplo n.º 1
0
 public GamesController(IGamesService gamesService, IRecentGamesService recentGamesService)
 {
     _gamesService       = gamesService;
     _recentGamesService = recentGamesService;
 }
Exemplo n.º 2
0
 public HomeController(IFavoriteGamesService favoriteGamesService, IRecentGamesService recentGamesService)
 {
     _favoriteGamesService = favoriteGamesService;
     _recentGamesService   = recentGamesService;
 }