Updated nuget packages.

This commit is contained in:
Patrick Fic
2020-06-01 15:21:37 -07:00
parent 5c3160321b
commit 9e39d42410
5 changed files with 27 additions and 55 deletions

View File

@@ -86,34 +86,7 @@ namespace BodyshopPartner.Utils
ResponseType = System.Text.RegularExpressions.Regex.Unescape(QueryResponse.Name.LocalName),
Response = response
};
//response.
}
//public static string[] parseInvoiceAddRs(string xml)
//{
// string[] retVal = new string[3];
// try
// {
// XmlNodeList RsNodeList = null;
// XmlDocument Doc = new XmlDocument();
// Doc.LoadXml(xml);
// RsNodeList = Doc.GetElementsByTagName("InvoiceAddRs");
// XmlAttributeCollection rsAttributes = RsNodeList.Item(0).Attributes;
// XmlNode statusCode = rsAttributes.GetNamedItem("statusCode");
// retVal[0] = Convert.ToString(statusCode.Value);
// XmlNode statusSeverity = rsAttributes.GetNamedItem("statusSeverity");
// retVal[1] = Convert.ToString(statusSeverity.Value);
// XmlNode statusMessage = rsAttributes.GetNamedItem("statusMessage");
// retVal[2] = Convert.ToString(statusMessage.Value);
// }
// catch (Exception e)
// {
// logger.Error("Error encountered when parsing Invoice info returned from QuickBooks: " + e.Message);
// retVal = null;
// }
// return retVal;
//}
}
}