Example #1
0
 public AccountController(ILogger <AccountController> logger,
                          CoreIdentity.SignInManager <User> signInManager,
                          CoreIdentity.UserManager <User> userManager,
                          IConfiguration config,
                          ForumService service)
 {
     this.logger        = logger;
     this.signInManager = signInManager;
     this.userManager   = userManager;
     this.config        = config;
     this.service       = service;
 }
Example #2
0
 public ForumController(ForumService service, CoreIdentity.UserManager <User> userManager)
 {
     this.service     = service;
     this.userManager = userManager;
 }