ArmedCards.BusinessLogic.AppServices.Game.Leave.Leave C# (CSharp) Method

Leave() public method

public Leave ( ArmedCards.BusinessLogic.DomainServices leaveGame, Game selectGame, Hubs sendMessage, GameRound startRound, GameRound deleteRound, Base updateGame, GamePlayerCard dealCards ) : System
leaveGame ArmedCards.BusinessLogic.DomainServices
selectGame Game
sendMessage Hubs
startRound GameRound
deleteRound GameRound
updateGame Base
dealCards GamePlayerCard
return System
        public Leave(DS.Game.Base.ILeave leaveGame, 
					 Game.Base.ISelect selectGame,
                     Hubs.Base.ISendMessage sendMessage,
					 GameRound.Base.IStart startRound,
					 GameRound.Base.IDelete deleteRound,
					 Base.IUpdate updateGame,
                     GamePlayerCard.Base.IDeal dealCards)
        {
            this._leaveGame = leaveGame;
            this._selectGame = selectGame;
            this._sendMessage = sendMessage;
            this._startRound = startRound;
            this._deleteRound = deleteRound;
            this._updateGame = updateGame;
            this._dealCards = dealCards;
        }