Beispiel #1
0
 public SSOController(
     UserStore userStore,
     UserManager userManager,
     PortunusSSOService ssoService,
     SSOSettings settings)
 {
     this.userStore   = userStore;
     this.userManager = userManager;
     this.ssoService  = ssoService;
     this.settings    = settings;
 }
Beispiel #2
0
 public AccountController(UserStore userStore, UserManager userManager, PortunusSSOService ssoService)
 {
     this.userStore   = userStore;
     this.userManager = userManager;
     this.ssoService  = ssoService;
 }