Example #1
0
 protected internal override void RemoveLinkedAccount(LinkedAccount item)
 {
     LinkedAccountCollection.Remove((TLinkedAccount)item);
 }
Example #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
     });
 }
Example #3
0
 public void RemoveLinkedAccount(LinkedAccount item)
 {
     LinkedAccountCollection.Remove((LinkedAccount)item);
 }
 protected internal override void AddLinkedAccount(LinkedAccount item)
 {
     LinkedAccountCollection.Add(new RelationalLinkedAccount {
         UserAccountID = this.ID, ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, LastLogin = item.LastLogin
     });
 }
Example #5
0
 public void AddLinkedAccount(LinkedAccount item)
 {
     LinkedAccountCollection.Add(new LinkedAccount {
         ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, LastLogin = item.LastLogin, UserId = this.ID
     });
 }