using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
namespace BLL
{
public class ClsKF_ChangeBoxBill
{
///
/// 根据过滤条件,返回源单信息-返回已审核倒箱单
///
///
///
///
public DataSet GetKF_ChangeBoxBillList(string sWhere, ref string sErr)
{
try
{
DAL.Cls_S_KF_ChangeBoxBill_Lite dal = new DAL.Cls_S_KF_ChangeBoxBill_Lite();
return dal.DisSourceBillList(sWhere);
}
catch (Exception e)
{
sErr = sErr + "," + e.Message;
return null;
}
}
}
}