public LoginHandler(Skateboard3Context context, ClientContext clientContext, IBlazeNotificationHandler notificationHandler, IPs3TicketDecoder ticketDecoder, IUserSessionManager userSessionManager)
 {
     _context             = context;
     _clientContext       = clientContext;
     _notificationHandler = notificationHandler;
     _ticketDecoder       = ticketDecoder;
     _userSessionManager  = userSessionManager;
 }
 public StartMatchmakingHandler(ClientContext clientContext, Skateboard3Context context, IOptions <BlazeConfig> blazeConfig, IBlazeNotificationHandler notificationHandler, IGameManager gameManager, IUserSessionManager userSessionManager)
 {
     _notificationHandler = notificationHandler;
     _context             = context;
     _blazeConfig         = blazeConfig.Value;
     _gameManager         = gameManager;
     _userSessionManager  = userSessionManager;
     _clientContext       = clientContext;
 }
Beispiel #3
0
 public SessionsController(Skateboard3Context dbContext, IUserSessionManager userSessionManager)
 {
     _dbContext          = dbContext;
     _userSessionManager = userSessionManager; //TODO handle usersessionmanager depend better
 }
Beispiel #4
0
 public SessionDataHandler(Skateboard3Context skateboard3Context, ClientContext clientContext, IUserSessionManager userSessionManager)
 {
     _skateboard3Context = skateboard3Context;
     _clientContext      = clientContext;
     _userSessionManager = userSessionManager;
 }