예제 #1
0
 private int GetItem_ACCEPT_QTY(ArrayList ParameterList)
 {
     PUR10_DBO dbo = new PUR10_DBO(ref USEDB);
     int iResult;
     try
     {
         iResult = dbo.doGetItem_ACCEPT_QTY(ParameterList);
         return iResult;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #2
0
 private DataTable GetPURCHASE_QTY(ArrayList ParameterList)
 {
     PUR10_DBO dbo = new PUR10_DBO(ref USEDB);
     DataTable dtResult;
     try
     {
         dtResult = dbo.doGetPURCHASE_QTY(ParameterList);
         return dtResult;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #3
0
 public DataTable QueryByFind(ArrayList ParameterList)
 {
     PUR10_DBO dbo = new PUR10_DBO(ref USEDB);
     DataTable dtResult;
     try
     {
         dtResult = dbo.doQueryByFind(ParameterList);
         return dtResult;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }