Example #1
0
 public DataTable QueryITEM(string BARCODE,string OutSection)
 {
     try
     {
         DBO.VDS_IVM39_DBO dbo = new VDS_IVM39_DBO(ref USEDB);
         return dbo.QueryITEM(BARCODE, OutSection);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public void CheckLocate(ArrayList ParameterList,out string Resault,out string  ErrMsg)
 {
     try
     {
         DBO.VDS_IVM39_DBO dbo = new VDS_IVM39_DBO(ref USEDB);
         
         dbo.CheckLocate(ParameterList,out Resault,out ErrMsg);
     }
     catch (Exception ex)
     {
         throw ex;
     }        
 }