protected internal override void AddLinkedAccount(LinkedAccount item) { LinkedAccountCollection.Add(new RelationalLinkedAccount { UserAccountID = this.ID, ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, LastLogin = item.LastLogin }); }
protected internal override void AddLinkedAccount(LinkedAccount item) { LinkedAccountCollection.Add(new TLinkedAccount { ParentKey = this.Key, ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, LastLogin = item.LastLogin }); }
public void AddLinkedAccount(LinkedAccount item) { LinkedAccountCollection.Add(new LinkedAccount { ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, LastLogin = item.LastLogin, UserId = this.ID }); }