public HandleWinnerHandler( IGameRepository gameRepository, ICardService cardService, IMoveService moveService, IMoveUserService moveUserService ) { _gameRepository = gameRepository; _cardService = cardService; _moveService = moveService; _moveUserService = moveUserService; }
public GamePlayApiController( IUserService userService, ICardService cardService, IGamePlayService gamePlayService, IMoveService moveService, IMoveUserService moveUserService ) : base(userService) { _cardService = cardService; _gamePlayService = gamePlayService; _moveService = moveService; _moveUserService = moveUserService; }
public MoveUserServiceTests() { _service = new MoveUserService(); }