Example #1
0
        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;
        }
Example #2
0
 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;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="insertGame"></param>
 public CreateGameController(ACAS.Game.Base.IInsert insertGame, ACAS.Deck.Base.ISelect selectDeck)
 {
     this._insertGame = insertGame;
     this._selectDeck = selectDeck;
 }
Example #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="insertGame"></param>
 public CreateGameController(ACAS.Game.Base.IInsert insertGame, ACAS.Deck.Base.ISelect selectDeck)
 {
     this._insertGame = insertGame;
     this._selectDeck = selectDeck;
 }