Example #1
0
 private FormulationSelectionDTO selectionFrom(Formulation formulation)
 {
     return(new FormulationSelectionDTO
     {
         BuildingBlock = formulation,
         DisplayName = _buildingBlockSelectionDisplayer.DisplayNameFor(formulation)
     });
 }
Example #2
0
 public string DisplayNameFor(ObserverSet observerSet) => _buildingBlockSelectionDisplayer.DisplayNameFor(observerSet);
Example #3
0
 public string DisplayFor(IPKSimBuildingBlock buildingBlock)
 {
     return(_buildingBlockSelectionDisplayer.DisplayNameFor(buildingBlock, _emptySelection));
 }
 private string compoundNameFor(Compound compound)
 {
     return(_buildingBlockSelectionDisplayer.DisplayNameFor(compound));
 }