// This method is the most important one for this Controller - it tells the framework how to get to the cells.
 // But since this row has an easy comprehensible structure, it is just necessary to ask the framework to get all childeren.
 // The children are then either div cells (in case of the header) and the DivCellAdapter will take care of them or
 // they are real cells and the framework uses the default Adapter
 protected override IEnumerable <IAssociation> ResolveAssociation(CellsBusinessAssociation businessAssociation)
 {
     yield return(new AlgorithmicAssociation("Cells"));
 }
예제 #2
0
 protected override IEnumerable <IAssociation> ResolveAssociation(CellsBusinessAssociation businessAssociation)
 {
     yield return(new TechnicalAssociation("Children"));
 }