using DataAynchronization.HW.DAL;
using HH.WMS.Entitys.Algorithm;
using HW.BLL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataAynchronization.HW.BLL
{
///
/// ItemPrice业务逻辑层
///
///
/// [HanHe(XDL)] CREATED 2018/07/04
public class TN_AB_B_ITEM_PRICEBLL : BaseBLL
{
#region 获取ItemPrice表集合
///
/// 根据表名获取ItemPrice表集合
///
/// 表名
/// ItemPrice集合
/// [HanHe(XDL)] CREATED 2018/07/04
public List GetItemPricetList(string tableName)
{
return CreateDAL().GetItemPricetList(tableName);
}
#endregion
}
}