Ejemplo n.º 1
0
 public void Handle(BiddingFinished e)
 {
     UsersHub.CurrentContext.Clients.Group(e.Id).biddingFinished(new
     {
         Bank = e.Bank
     });
 }
Ejemplo n.º 2
0
 public void Handle(BiddingFinished e)
 {
     _tables.Update(e.Id, table =>
     {
         table.Bank = e.Bank;
         foreach (var player in table.Players)
         {
             player.Bet = 0;
         }
     });
 }