Ejemplo n.º 1
0
        public void Execute(string sessionID, string messageID)
        {
            if (InvalidIDString(messageID))
            {
                throw new InvalidMessageIDException();
            }

            if (InvalidIDString(sessionID))
            {
                throw new InvalidSessionIDException();
            }

            if (_responseGateway.HasID(messageID))
            {
                _responseGateway.PopID(messageID);
                _getStartingCard.Execute(sessionID);
            }
        }
Ejemplo n.º 2
0
        public void Execute(string sessionID, string messageID)
        {
            if (InvalidIDString(messageID))
            {
                throw new InvalidMessageIDException();
            }

            if (InvalidIDString(sessionID))
            {
                throw new InvalidSessionIDException();
            }

            if (!_awaitingResponseGateway.HasID(messageID))
            {
                return;
            }

            _awaitingResponseGateway.PopID(messageID);
            _getGameInProgressUseCase.Execute(sessionID);
        }