/// <summary> /// Initializes a new instance of the <see cref="MeetingSuggestionCollection"/> class. /// </summary> /// <param name="collection">The collection of objects to include.</param> MeetingSuggestionCollection(Iterable <MeetingSuggestion> collection) { if (collection != null) { collection.ForEach(this.InternalAdd); } }
/// <summary> /// Initializes a new instance of the <see cref="PhoneEntityCollection"/> class. /// </summary> /// <param name="collection">The collection of objects to include.</param> PhoneEntityCollection(Iterable <PhoneEntity> collection) { if (collection != null) { collection.ForEach(this.InternalAdd); } }
/// <summary> /// Initializes a new instance of the <see cref="ComputedInsightValuePropertyCollection"/> class. /// </summary> /// <param name="collection">The collection of objects to include.</param> ComputedInsightValuePropertyCollection(Iterable <ComputedInsightValueProperty> collection) { if (collection != null) { collection.ForEach(this.InternalAdd); } }
/// <summary> /// Initializes a new instance of the <see cref="EmailAddressEntityCollection"/> class. /// </summary> /// <param name="collection">The collection of objects to include.</param> EmailAddressEntityCollection(Iterable <EmailAddressEntity> collection) { if (collection != null) { collection.ForEach(this.InternalAdd); } }
/// <summary> /// Initializes a new instance of the <see cref="InsightValueCollection"/> class. /// </summary> /// <param name="collection">The collection of objects to include.</param> InsightValueCollection(Iterable <InsightValue> collection) { if (collection != null) { collection.ForEach(this.InternalAdd); } }