Example #1
0
 public WaitingActionService(IRoomInfoService roomInfoService, IWaitingService waitingService,
                             IUserStateInfoService userStateInfoService)
 {
     this.roomInfoService      = roomInfoService;
     this.waitingService       = waitingService;
     this.userStateInfoService = userStateInfoService;
 }
Example #2
0
 public RoomActionService(IRoomInfoService roomInfoService, IUserStateInfoService userStateInfoService,
                          IGameInfoService gameInfoService)
 {
     this.roomInfoService      = roomInfoService;
     this.userStateInfoService = userStateInfoService;
     this.gameInfoService      = gameInfoService;
 }
Example #3
0
 public UserStateInfoViewModel(IUserStateInfoService userStateInfoService,
                               IEntityChangedNotificationService entityChangedNotificationService, IUserInfoService userInfoService)
 {
     this.userStateInfoService             = userStateInfoService;
     this.entityChangedNotificationService = entityChangedNotificationService;
     this.userInfoService = userInfoService;
     this.entityChangedNotificationService.EntityChangedNotification += OnEntityChanged;
 }
Example #4
0
 public UserStateInfoController(IUserStateInfoService userStateInfoService,
                                ICallContextService callContextService)
 {
     this.userStateInfoService = userStateInfoService;
     this.callContextService   = callContextService;
 }
Example #5
0
 public GameActionService(IGameInfoService gameInfoService, IUserStateInfoService userStateInfoService)
 {
     this.gameInfoService      = gameInfoService;
     this.userStateInfoService = userStateInfoService;
 }