Beispiel #1
0
 private InvComponentOccurrences(InvComponentOccurrences invComponentOccurrences)
 {
     InternalComponentOccurrences = invComponentOccurrences.InternalComponentOccurrences;
     occurrenceList = new List <InvComponentOccurrence>();
     foreach (var occurrenceDef in InternalComponentOccurrences)
     {
         occurrenceList.Add(InvComponentOccurrence.ByInvComponentOccurrence((Inventor.ComponentOccurrence)occurrenceDef));
     }
 }
Beispiel #2
0
 public static InvComponentOccurrences ByInvComponentOccurrences(InvComponentOccurrences invComponentOccurrences)
 {
     return(new InvComponentOccurrences(invComponentOccurrences));
 }