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

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

public Deal ( ArmedCards.BusinessLogic.DomainServices shuffleCards, ArmedCards.BusinessLogic.DomainServices excludeCurrentHands, ArmedCards.BusinessLogic.DomainServices excludeByCount, Base calculateDrawCount, Base createHand, ArmedCards.BusinessLogic.DomainServices insertGameRoundCard, ArmedCards.BusinessLogic.AppServices updateGame ) : System
shuffleCards ArmedCards.BusinessLogic.DomainServices
excludeCurrentHands ArmedCards.BusinessLogic.DomainServices
excludeByCount ArmedCards.BusinessLogic.DomainServices
calculateDrawCount Base
createHand Base
insertGameRoundCard ArmedCards.BusinessLogic.DomainServices
updateGame ArmedCards.BusinessLogic.AppServices
Результат System
        public Deal(DS.Card.Base.IShuffle shuffleCards,
					DS.Card.Base.IExcludeCurrentHands excludeCurrentHands,
					DS.Card.Base.IExcludeByCount excludeByCount,
					Base.ICalculateDrawCount calculateDrawCount,
					Base.ICreateHand createHand,
					DS.GameRoundCard.Base.IInsert insertGameRoundCard,
                    AS.Game.Base.IUpdate updateGame)
        {
            this._shuffleCards = shuffleCards;
            this._excludeCurrentHands = excludeCurrentHands;
            this._excludeByCount = excludeByCount;
            this._calculateDrawCount = calculateDrawCount;
            this._createHand = createHand;
            this._insertGameRoundCard = insertGameRoundCard;
            this._updateGame = updateGame;
        }