Beispiel #1
0
 public BoBattleField(IDispatcherBattleField iDispatcherBattleField, IBoPlayer iBoPlayer, IBoMatch iBoMatch, IBoMatchSpecialPower iBoMatchSpecialPower, IBoMatchAttacks iBoMatchAttacks)
 {
     IDispatcherBattleField = iDispatcherBattleField;
     IBoPlayer            = iBoPlayer;
     IBoMatch             = iBoMatch;
     IBoMatchSpecialPower = iBoMatchSpecialPower;
     IBoMatchAttacks      = iBoMatchAttacks;
 }
Beispiel #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="pIBOPlayer">Business class of player</param>
 /// <param name="pIDispatcherMatch">Connection class to the database for match</param>
 /// <param name="pIBoMatchSpecialPower">Business class of match/special power</param>
 public BoMatch(IBoPlayer pIBOPlayer, IDispatcherMatch pIDispatcherMatch, IBoMatchSpecialPower pIBoMatchSpecialPower)
 {
     IBoJogador           = pIBOPlayer;
     IDispatcherMatch     = pIDispatcherMatch;
     IBoMatchSpecialPower = pIBoMatchSpecialPower;
 }