Ejemplo n.º 1
0
 // Traceability
 public List <MissionSegment> MissionSegments(Data data)
 {
     if (data == null)
     {
         return(new List <MissionSegment>());
     }
     return(dataSegmentsGraph.GetChildren(data));
 }
Ejemplo n.º 2
0
 public List <MissionSegment> MissionSegments(WorkflowComponent component)
 {
     if (component == null)
     {
         return(new List <MissionSegment>());
     }
     return(componentsSegmentsGraph.GetChildren(component));
 }