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