ArmedCards.BusinessLogic.Repositories.Game.Select.Select C# (CSharp) Метод

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

public Select ( ArmedCards.DataAccess.Game selectGame, GamePlayer selectGamePlayerREPO, ArmedCards.BusinessLogic.AppServices selectDeck, ArmedCards.BusinessLogic.AppServices selectGameRound ) : System
selectGame ArmedCards.DataAccess.Game
selectGamePlayerREPO GamePlayer
selectDeck ArmedCards.BusinessLogic.AppServices
selectGameRound ArmedCards.BusinessLogic.AppServices
Результат System
        public Select(DAL.Base.ISelect selectGame,
                      GamePlayer.Base.ISelect selectGamePlayerREPO,
					  AS.Deck.Base.ISelect selectDeck,
					  AS.GameRound.Base.ISelect selectGameRound)
        {
            this._selectGame = selectGame;
            this._selectGamePlayerREPO = selectGamePlayerREPO;
            this._selectDeck = selectDeck;
            this._selectGameRound = selectGameRound;
        }