using HH.WMS.Entitys.Basic;
|
using HW.DAL;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace HW.BLL
|
{
|
/// <summary>
|
/// 客户表业务逻辑层
|
/// </summary>
|
/// <returns></returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/13</history>
|
public class TN_AB_CUSTOMERBLL:BaseBLL
|
{
|
/// <summary>
|
/// 根据表名获取客户表集合
|
/// </summary>
|
/// <param name="tableName">表名</param>
|
/// <returns>客户表集合</returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/13</history>
|
public List<TN_AB_CUSTOMEREntity> GetCustomList(string tableName)
|
{
|
return CreateDAL<TN_AB_CUSTOMERDAL>().GetCustomList(tableName);
|
}
|
}
|
}
|