using System.Collections.Generic;
using WMS.Model.Strategy;
using System.Data;
using WMS.IData;
using WMS.Common;
namespace WMS.Business.Strategy
{
public class BussStrAreaRepStorage : IBussFactory
{
///
/// 获取库区间定时补货策略仓库库区明细
///
/// 库区间定时补货策略仓库库区明细
public List GetStrAreaRepStorageList(StrAreaRepStorageModel model)
{
DataTable table = DataProvider.Instance.StrAreaRepStorage.GetStrAreaRepStorageDT(model);
List StrAreaRepStorageModel = ConvertHelper.ConvertToList(table);
if (DataLogErrWrite(table, "获取库区间定时补货策略仓库库区明细"))
{
return StrAreaRepStorageModel;
}
return null;
}
}
}