12 lines
327 B
C#
12 lines
327 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.QH
|
|
{
|
|
public interface IQH_CUSTOMER_SALEUSER : IRepository<QH_CUSTOMER_SALEUSER>
|
|
{
|
|
List<QH_CUSTOMER_SALEUSER> GetList(ref Pager pager, string userAccount, decimal? innerUserId, decimal bindType);
|
|
}
|
|
}
|