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