ArmedCards.BusinessLogic.DomainServices.GameRound.Complete.Complete C# (CSharp) Метод

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

public Complete ( ArmedCards.BusinessLogic.AppServices selectGameRound, ArmedCards.BusinessLogic.AppServices updateGameRoundCard, ArmedCards.BusinessLogic.AppServices startGameRoud, ArmedCards.BusinessLogic.AppServices selectGame, ArmedCards.BusinessLogic.AppServices updateGamePlayer ) : System
selectGameRound ArmedCards.BusinessLogic.AppServices
updateGameRoundCard ArmedCards.BusinessLogic.AppServices
startGameRoud ArmedCards.BusinessLogic.AppServices
selectGame ArmedCards.BusinessLogic.AppServices
updateGamePlayer ArmedCards.BusinessLogic.AppServices
Результат System
        public Complete(AS.GameRound.Base.ISelect selectGameRound,
						AS.GameRoundCard.Base.IUpdate updateGameRoundCard,
						AS.GameRound.Base.IStart startGameRoud,
						AS.Game.Base.ISelect selectGame,
						AS.GamePlayer.Base.IUpdate updateGamePlayer)
        {
            this._selectGameRound = selectGameRound;
            this._updateGameRoundCard = updateGameRoundCard;
            this._startGameRoud = startGameRoud;
            this._selectGame = selectGame;
            this._updateGamePlayer = updateGamePlayer;
        }