public CreditInstrument(XmlNode xmlNode) : base(xmlNode) { XmlNode issueInformationNode = xmlNode.SelectSingleNode("issueInformation"); if (issueInformationNode != null) { if (issueInformationNode.Attributes["href"] != null || issueInformationNode.Attributes["id"] != null) { if (issueInformationNode.Attributes["id"] != null) { issueInformationIDRef_ = issueInformationNode.Attributes["id"].Value; IssueInformation ob = new IssueInformation(issueInformationNode); IDManager.SetID(issueInformationIDRef_, ob); } else if (issueInformationNode.Attributes["href"] != null) { issueInformationIDRef_ = issueInformationNode.Attributes["href"].Value; } else { issueInformation_ = new IssueInformation(issueInformationNode); } } else { issueInformation_ = new IssueInformation(issueInformationNode); } } XmlNode underlyingInformationNode = xmlNode.SelectSingleNode("underlyingInformation"); if (underlyingInformationNode != null) { if (underlyingInformationNode.Attributes["href"] != null || underlyingInformationNode.Attributes["id"] != null) { if (underlyingInformationNode.Attributes["id"] != null) { underlyingInformationIDRef_ = underlyingInformationNode.Attributes["id"].Value; UnderlyingInformation ob = new UnderlyingInformation(underlyingInformationNode); IDManager.SetID(underlyingInformationIDRef_, ob); } else if (underlyingInformationNode.Attributes["href"] != null) { underlyingInformationIDRef_ = underlyingInformationNode.Attributes["href"].Value; } else { underlyingInformation_ = new UnderlyingInformation(underlyingInformationNode); } } else { underlyingInformation_ = new UnderlyingInformation(underlyingInformationNode); } } XmlNode creditPayoffInfoNode = xmlNode.SelectSingleNode("creditPayoffInfo"); if (creditPayoffInfoNode != null) { if (creditPayoffInfoNode.Attributes["href"] != null || creditPayoffInfoNode.Attributes["id"] != null) { if (creditPayoffInfoNode.Attributes["id"] != null) { creditPayoffInfoIDRef_ = creditPayoffInfoNode.Attributes["id"].Value; CreditPayoffInfo ob = new CreditPayoffInfo(creditPayoffInfoNode); IDManager.SetID(creditPayoffInfoIDRef_, ob); } else if (creditPayoffInfoNode.Attributes["href"] != null) { creditPayoffInfoIDRef_ = creditPayoffInfoNode.Attributes["href"].Value; } else { creditPayoffInfo_ = new CreditPayoffInfo(creditPayoffInfoNode); } } else { creditPayoffInfo_ = new CreditPayoffInfo(creditPayoffInfoNode); } } }