protected internal override void AddLinkedAccountClaim(LinkedAccountClaim item) { LinkedAccountClaimCollection.Add(new RelationalLinkedAccountClaim { UserAccountID = this.ID, ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, Type = item.Type, Value = item.Value }); }
protected internal override void AddLinkedAccountClaim(LinkedAccountClaim item) { LinkedAccountClaimCollection.Add(new TLinkedAccountClaim { ParentKey = this.Key, ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, Type = item.Type, Value = item.Value }); }
public void AddLinkedAccountClaim(LinkedAccountClaim item) { LinkedAccountClaimCollection.Add(new LinkedAccountClaim { ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, Type = item.Type, Value = item.Value, UserId = this.ID }); }