19 lines
634 B
C#
19 lines
634 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.DAL.QH;
|
|
using WX.CRM.IBLL.QH;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.BLL.QH
|
|
{
|
|
public class QH_CUSTOMER_SALEUSER_BL : DbContextRepository<QH_CUSTOMER_SALEUSER>, IQH_CUSTOMER_SALEUSER
|
|
{
|
|
QH_CUSTOMER_SALEUSER_DAL qhcs_Dal = new QH_CUSTOMER_SALEUSER_DAL();
|
|
public List<QH_CUSTOMER_SALEUSER> GetList(ref Pager pager, string userAccount, decimal? innerUserId, decimal bindType)
|
|
{
|
|
return qhcs_Dal.GetList(ref pager, userAccount, innerUserId, bindType).ToList<QH_CUSTOMER_SALEUSER>();
|
|
}
|
|
}
|
|
}
|