using System.Collections.Generic;
public static void Main()
var people = DataService.GetPeople();
public string Name { get; set; }
public int Age { get; set; }
public ICollection<Food> FavoriteFoods { get; set; }
public string Name { get; set; }
public int Calories { get; set; }
public static class DataService
public static IEnumerable<Person> GetPeople()
FavoriteFoods = new List<Food>
FavoriteFoods = new List<Food>
FavoriteFoods = new List<Food>