public void RemoveLinkedAccount(LinkedAccount item) { LinkedAccountCollection.Remove((LinkedAccount)item); }
public void AddLinkedAccount(LinkedAccount item) { LinkedAccountCollection.Add(new LinkedAccount { ProviderName = item.ProviderName, ProviderAccountID = item.ProviderAccountID, LastLogin = item.LastLogin, UserId = this.ID }); }