public void AddItem(ShoppingListItem item, int sectionId) { var section = sections.FirstOrDefault(s => s.Id == sectionId); section?.AddItem(item); }