ArmedCards.BusinessLogic.DomainServices.GamePlayerCard.Play.Play C# (CSharp) Метод

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

public Play ( ArmedCards.BusinessLogic.AppServices selectGamePlayerCard, ArmedCards.BusinessLogic.AppServices selectGameRound, ArmedCards.BusinessLogic.AppServices insertGameRoundCard, Base deleteGamePlayerCard ) : System
selectGamePlayerCard ArmedCards.BusinessLogic.AppServices
selectGameRound ArmedCards.BusinessLogic.AppServices
insertGameRoundCard ArmedCards.BusinessLogic.AppServices
deleteGamePlayerCard Base
Результат System
        public Play(AS.GamePlayerCard.Base.ISelect selectGamePlayerCard,
					AS.GameRound.Base.ISelect selectGameRound,
					AS.GameRoundCard.Base.IInsert insertGameRoundCard,
					Base.IDelete deleteGamePlayerCard)
        {
            this._selectGamePlayerCard = selectGamePlayerCard;
            this._selectGameRound = selectGameRound;
            this._insertGameRoundCard = insertGameRoundCard;
            this._deleteGamePlayerCard = deleteGamePlayerCard;
        }