Exemplo n.º 1
0
 /// <summary>
 /// 根据检索条件检索出满足条件的信息 Added By songfei 2009-04-24
 /// </summary>
 /// <returns>DataTable</returns>
 public static DataTable SelectPurchaseHistoryAskPrice(int pageIndex, int pageCount, string orderBy, ref int TotalCount, string ProductID, string StartPurchaseDate, string EndPurchaseDate)
 {
     try
     {
         return PurchaseOrderDBHelper.SelectHistoryAskPriceList(pageIndex, pageCount, orderBy, ref TotalCount, ProductID, StartPurchaseDate, EndPurchaseDate);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }