Ejemplo n.º 1
0
 public PlayerRegistrationHandler(
     IRealmService realmService,
     IUserIdProvider userIdProvider,
     IRedirectionHandler nextHandler)
 {
     this.realmService   = realmService;
     this.userIdProvider = userIdProvider;
     this.NextHandler    = nextHandler;
 }
Ejemplo n.º 2
0
 public GameFilterAttribute(IRedirectionHandler redirectHandler)
 {
     this.redirectHandler = redirectHandler;
 }
Ejemplo n.º 3
0
 public MeanwhileRedirectionHandler(IRealmService realmService, IRedirectionHandler nextHandler)
 {
     this.realmService = realmService;
     this.NextHandler  = nextHandler;
 }