Пример #1
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;
 }
Пример #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="pIBOPlayer">Business class of player</param>
 /// <param name="pIDispatcherMatch">Connection class to the database for match</param>
 public BoMatch(IBoPlayer pIBOPlayer, IDispatcherMatch pIDispatcherMatch)
 {
     IBoJogador         = pIBOPlayer;
     IDispatcherPartida = pIDispatcherMatch;
 }