Exemple #1
0
 public WebSocketHandler(WebSocketConnections connections, IUnitOfWork unitOfWork, IBoMatch match, IBoPlayer player)
 {
     this.connections = connections;
     IUnitOfWork      = unitOfWork;
     playerObject     = player;
     matchObject      = match;
 }
 public BattleFieldController(IBoBattleField iBoBattleField, IBoPlayer iBoPlayer, IBoMatch iBoMatch, IBoMatchAttacks iBoMatchAttacks)
 {
     IBoBattleField  = iBoBattleField;
     IBoPlayer       = iBoPlayer;
     IBoMatch        = iBoMatch;
     IBoMatchAttacks = iBoMatchAttacks;
 }
Exemple #3
0
 public BoBattleField(IDispatcherBattleField iDispatcherBattleField, IBoPlayer iBoPlayer, IBoMatch iBoMatch, IBoMatchSpecialPower iBoMatchSpecialPower, IBoMatchAttacks iBoMatchAttacks)
 {
     IDispatcherBattleField = iDispatcherBattleField;
     IBoPlayer            = iBoPlayer;
     IBoMatch             = iBoMatch;
     IBoMatchSpecialPower = iBoMatchSpecialPower;
     IBoMatchAttacks      = iBoMatchAttacks;
 }
Exemple #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="pIBoPartida">Business class of match</param>
 public MatchController(IBoMatch pIBoPartida)
 {
     IBoMatch = pIBoPartida;
 }