示例#1
0
        public HandleWinnerHandler(
            IGameRepository gameRepository,
            ICardService cardService,
            IMoveService moveService,
            IMoveUserService moveUserService
            )
        {
            _gameRepository = gameRepository;

            _cardService     = cardService;
            _moveService     = moveService;
            _moveUserService = moveUserService;
        }
示例#2
0
 public GamePlayApiController(
     IUserService userService,
     ICardService cardService,
     IGamePlayService gamePlayService,
     IMoveService moveService,
     IMoveUserService moveUserService
     )
     : base(userService)
 {
     _cardService     = cardService;
     _gamePlayService = gamePlayService;
     _moveService     = moveService;
     _moveUserService = moveUserService;
 }
示例#3
0
 public MoveUserServiceTests()
 {
     _service = new MoveUserService();
 }