public GamesController(IGameAppService gameAppService, IUserAppService userAppService, IBorrowAppService borrowAppService) { _gameAppRepository = gameAppService; _userAppRepository = userAppService; _borrowAppRepository = borrowAppService; _context = new SessionContext(); }
public UsersController(IUserAppService userAppService, IGameAppService gameAppService, IBorrowAppService borrowAppService) { _userRepository = userAppService; _gameAppRepository = gameAppService; _borrowAppRepository = borrowAppService; }