Exemple #1
0
 public GamesController(IGamesService gamesService, IRecentGamesService recentGamesService)
 {
     _gamesService       = gamesService;
     _recentGamesService = recentGamesService;
 }
 public HomeController(IFavoriteGamesService favoriteGamesService, IRecentGamesService recentGamesService)
 {
     _favoriteGamesService = favoriteGamesService;
     _recentGamesService   = recentGamesService;
 }