ArmedCards.Web.Controllers.Game.Board.GameController.GameController C# (CSharp) Метод

GameController() публичный Метод

Constructor
public GameController ( ArmedCards.BusinessLogic.AppServices joinGame, ArmedCards.BusinessLogic.AppServices sendMessage, ArmedCards.BusinessLogic.AppServices selectUser, ArmedCards.BusinessLogic.AppServices selectKickVotes, ArmedCards.BusinessLogic.AppServices selectGameRounds ) : System
joinGame ArmedCards.BusinessLogic.AppServices
sendMessage ArmedCards.BusinessLogic.AppServices
selectUser ArmedCards.BusinessLogic.AppServices
selectKickVotes ArmedCards.BusinessLogic.AppServices
selectGameRounds ArmedCards.BusinessLogic.AppServices
Результат System
        public GameController(AS.Game.Base.IJoin joinGame, AS.Hubs.Base.ISendMessage sendMessage,
								AS.User.Base.ISelect selectUser, AS.GamePlayerKickVote.Base.ISelect selectKickVotes,
                                AS.GameRound.Base.ISelect selectGameRounds)
        {
            this._joinGame = joinGame;
            this._sendMessage = sendMessage;
            this._selectUser = selectUser;
            this._selectKickVotes = selectKickVotes;
            this._selectGameRounds = selectGameRounds;
        }