public LoginController(IdentityManagerService service)
 {
     _service = service;
 }
Example #2
0
 public AccountController(IdentityManagerService service)
 {
     _service = service ?? throw new ArgumentNullException(nameof(service));
 }