Let's say my repository is structured as follows:
Main -> Summary -> Tab1
-> Tab2
-> Detail -> Report
-> Additional Info
Is there a way for me to pass in the "Main" repo item into a method as a parameter and within that method, be able to access the children of "Main" repo item? If this is possible, could somebody give me an example of what the method would look like sepcifically the parameter type?
void method(xxx repoItem)
{
repoItem.Summary.Tab1
repoItem.Detail.Report
}