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, IQH_CUSTOMER_SALEUSER { QH_CUSTOMER_SALEUSER_DAL qhcs_Dal = new QH_CUSTOMER_SALEUSER_DAL(); public List GetList(ref Pager pager, string userAccount, decimal? innerUserId, decimal bindType) { return qhcs_Dal.GetList(ref pager, userAccount, innerUserId, bindType).ToList(); } } }