Beispiel #1
0
 /// <summary>
 /// 分页查询营销系统数据入库单据明细表
 /// </summary>
 /// <param name="PrimaryKey"></param>
 /// <param name="papeIndex"></param>
 /// <param name="papeSize"></param>
 /// <param name="orderBy"></param>
 /// <param name="inBillNo"></param>
 /// <returns></returns>
 public DataTable GetInBillDetail(string PrimaryKey, int papeIndex, int papeSize, string orderBy, string inBillNo)
 {
     using (PersistentManager dbpm = new PersistentManager("YXConnection"))
     {
         DownInBillDao dao = new DownInBillDao();
         dao.SetPersistentManager(dbpm);
         return(dao.GetInBillDetailByBillNo(inBillNo));
     }
 }