749
750
export class InMemoryUserDataProfilesService extends UserDataProfilesService {
752
>
protected override getStoredProfiles(): StoredUserDataProfile[] { return this.storedProfiles; }
753
>
protected override saveStoredProfiles(storedProfiles: StoredUserDataProfile[]): void { this.storedProfiles = storedProfiles; }
754
>
755
>
private storedProfileAssociations: StoredProfileAssociations = {};
756
protected override getStoredProfileAssociations(): StoredProfileAssociations { return this.storedProfileAssociations; }
757
protected override saveStoredProfileAssociations(storedProfileAssociations: StoredProfileAssociations): void { this.storedProfileAssociations = storedProfileAssociations; }