private DataTable GetShippingDtlForReport(string sysid) { wsINP.IwsINPClient client = new wsINP.IwsINPClient(); DataTable dt = null; try { dt = client.GetShippingDtlForReport(baseForm.CurrentContextInfo, sysid).Tables[0]; } catch (Exception ex) { throw ex; } finally { baseForm.CloseWCF(client); } return dt; }