public AutoCreateAccountService(
     IAuthenticationDatabaseService dbAuth,
     IStObjMap stObjMap,
     IAuthenticationTypeSystem typeSystem
     )
 {
     _stObjMap   = stObjMap;
     _dbAuth     = dbAuth;
     _typeSystem = typeSystem;
 }
 /**
  * Constructor for dependency injection.
  */
 public AuthenticationService(IAuthenticationDatabaseService _authDBService)
 {
     this.authDBService = _authDBService;
 }