Example #1
0
 public AccountController(UserManager userManager, ApplicationSignInManager signInManager, IStoreAppRepo repository)
 {
     UserManager   = userManager;
     SignInManager = signInManager;
     _repository   = repository;
 }
Example #2
0
 public AccountController(IStoreAppRepo repository)
 {
     _repository = repository;
 }