コード例 #1
0
 public AutoCreateAccountService(
     IAuthenticationDatabaseService dbAuth,
     IStObjMap stObjMap,
     IAuthenticationTypeSystem typeSystem
     )
 {
     _stObjMap   = stObjMap;
     _dbAuth     = dbAuth;
     _typeSystem = typeSystem;
 }
コード例 #2
0
 /**
  * Constructor for dependency injection.
  */
 public AuthenticationService(IAuthenticationDatabaseService _authDBService)
 {
     this.authDBService = _authDBService;
 }