Beispiel #1
0
        /// <inheritdoc />
        public AuthenticationDatabaseUserAccountAccountRepository(authContext authenticationDatabaseContext)
        {
            if (authenticationDatabaseContext == null)
            {
                throw new ArgumentNullException(nameof(authenticationDatabaseContext));
            }

            AuthenticationDatabaseContext = authenticationDatabaseContext;
        }
        /// <inheritdoc />
        public AuthenticationDatabaseRealmRepository([NotNull] authContext databaseContext)
        {
            if (databaseContext == null)
            {
                throw new ArgumentNullException(nameof(databaseContext));
            }

            DatabaseContext = databaseContext;
        }