public void CheckItemData(ArrayList ParameterList, out string Msg)
 {
     try
     {
         DBO.PUR_PurchaseDeliveryGoodsDBO dbo = new PUR_PurchaseDeliveryGoodsDBO(ref USEDB);
         dbo.CheckItemData(ParameterList, out Msg);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }