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