Example #1
0
 public FromUICommandsToDomainHandler(IUICommandChannel UICommandChannel, IGame game)
 {
     this.game = game;
     UICommandChannel.AddSubscriber(this);
 }
 public FromUICommandsToDomainHandler(IUICommandChannel UICommandChannel, GameService gameService, Guid GameId)
 {
     this.GameId      = GameId;
     this.gameService = gameService;
     UICommandChannel.AddSubscriber(this);
 }