Пример #1
0
 public void RemoveLinkedAccount(LinkedAccount item)
 {
     LinkedAccountCollection.Remove((LinkedAccount)item);
 }
Пример #2
0
 public void AddLinkedAccount(LinkedAccount item)
 {
     LinkedAccountCollection.Add(new LinkedAccount {
         ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, LastLogin = item.LastLogin, UserId = this.ID
     });
 }