public AccountService(RegistrationManager registrationManager, ISyEncode syEncode)
 {
     _registrationManager = registrationManager;
     _syEncode            = syEncode;
 }
 public TokenAuthController(LoginManager loginManager, AccountService accountService, ISyEncode syEncode)
 {
     _loginManager   = loginManager;
     _accountService = accountService;
     _syEncode       = syEncode;
 }