I got following structure:
Class A has a member: List<ClassB>
Class B has a member: List<ClassC>
Who is it possible to get for one specific object of class A one specific object of List<B>
and all of it's objects in List<ClassC>
?
In a other way: How can I get the List<ClassC>
for a specific ClassB
?