How do I initialize a collection of \'Quote\' objects based on the class shown below where \'Quote\' would contain a collection of at least 5 \'Rate\' objects.
List quotes = new List {
new Quote {
Id = 1,
Rates = new List {
new Rate {
Id = 1,
AccommodationType = "Whatever",
Price = 0m
},
new Rate { ......
}
}
}
};