Question:Refer to the code given below and identify the line numbers that contain errors:
..
1. Inquire.Url = "http://uddi.rte.microsoft.com/inquire";
2. FindBusiness findBusiness = new FindBusiness();
3. findBusiness.Names.Add("Royal Airways");
4. BusinessList list = findBusiness.Find();
5. if (list.BusinessInfos.Count > 0)
6. {
7. GetBusinessInfo gb = new GetBusinessInfo();
8. gb.BusinessKeys.Add(bizList.BusinessInfos[0].BusinessKey);
9. BusinessDetail bizDetail = gb.Send();
10. if (bizDetail.BusinessEntities.Count > 0)
11. {
12. ...
13. }
14.}
...