コード例 #1
0
 public UserStateInfoController(IUserStateInfoService userStateInfoService,
                                ICallContextService callContextService)
 {
     this.userStateInfoService = userStateInfoService;
     this.callContextService   = callContextService;
 }
コード例 #2
0
 public GameController(ICallContextService callContextService, IGameActionService gameActionService)
 {
     this.callContextService = callContextService;
     this.gameActionService  = gameActionService;
 }
コード例 #3
0
ファイル: WaitingController.cs プロジェクト: qswcom/Trivia
 public WaitingController(ICallContextService callContextService, IWaitingActionService waitingActionService)
 {
     this.callContextService   = callContextService;
     this.waitingActionService = waitingActionService;
 }
コード例 #4
0
ファイル: RoomController.cs プロジェクト: qswcom/Trivia
 public RoomController(ICallContextService callContextService, IRoomActionService roomActionService)
 {
     this.callContextService = callContextService;
     this.roomActionService  = roomActionService;
 }