Ejemplo n.º 1
0
 public UserStateInfoController(IUserStateInfoService userStateInfoService,
                                ICallContextService callContextService)
 {
     this.userStateInfoService = userStateInfoService;
     this.callContextService   = callContextService;
 }
Ejemplo n.º 2
0
 public GameController(ICallContextService callContextService, IGameActionService gameActionService)
 {
     this.callContextService = callContextService;
     this.gameActionService  = gameActionService;
 }
Ejemplo n.º 3
0
 public WaitingController(ICallContextService callContextService, IWaitingActionService waitingActionService)
 {
     this.callContextService   = callContextService;
     this.waitingActionService = waitingActionService;
 }
Ejemplo n.º 4
0
 public RoomController(ICallContextService callContextService, IRoomActionService roomActionService)
 {
     this.callContextService = callContextService;
     this.roomActionService  = roomActionService;
 }