Take a look at the following code. You will notice that Cases contains a List<Bottles>. Each Bottles Object contains a List<MyLabels>. In my code I am handed a List<Cases>. Now I need boil down the List<Cases> in to a List<MyLabels> I received!
How do I do this?
Public List<MyLabels> getListOfLabels(List<Cases> cases)
{
\\A bunch of foreach(s)?
}
public
Thanks