public void RemoveFromCategory(IRSSCategory category) { if (BelongsToCategories.Contains(category)) { BelongsToCategories.Remove(category); category.RemoveFeed(this); } }
public void AddToCategory(IRSSCategory category) { if (!BelongsToCategories.Contains(category)) { BelongsToCategories.Add(category); category.AddFeed(this); } }