public UserStateInfoController(IUserStateInfoService userStateInfoService, ICallContextService callContextService) { this.userStateInfoService = userStateInfoService; this.callContextService = callContextService; }
public GameController(ICallContextService callContextService, IGameActionService gameActionService) { this.callContextService = callContextService; this.gameActionService = gameActionService; }
public WaitingController(ICallContextService callContextService, IWaitingActionService waitingActionService) { this.callContextService = callContextService; this.waitingActionService = waitingActionService; }
public RoomController(ICallContextService callContextService, IRoomActionService roomActionService) { this.callContextService = callContextService; this.roomActionService = roomActionService; }