Beispiel #1
0
 public AccountController(IOptions <SpaOptions> spaOptions, IAuthenticationTypeSystem typeSystem, IStObjMap stObjMap, IWebFrontAuthLoginService loginService, IAuthenticationInfo authenticationInfo)
 {
     _spaOptions         = spaOptions;
     _typeSystem         = typeSystem;
     _stObjMap           = stObjMap;
     _loginService       = loginService;
     _authenticationInfo = authenticationInfo;
 }
 public AutoCreateAccountService(
     IAuthenticationDatabaseService dbAuth,
     IStObjMap stObjMap,
     IAuthenticationTypeSystem typeSystem
     )
 {
     _stObjMap   = stObjMap;
     _dbAuth     = dbAuth;
     _typeSystem = typeSystem;
 }