public HomeController(ILoansAppService loansApp, IFriendsAppService friendsApp, IGamesAppService gamesApp) { _friendsApp = friendsApp; _gamesApp = gamesApp; _loansApp = loansApp; }
public GamesController(IGamesAppService gamesApp) { _gamesApp = gamesApp; }