private void SetSymbolSpecificationListFromXElement(XElement symbolSpecificationsElement) { foreach (var symbolSpecificationElement in symbolSpecificationsElement.Elements(nameof(SymbolSpecification))) { SymbolSpecifications.Add(SymbolSpecification.FromXElement(symbolSpecificationElement)); } }