14 lines
501 B
C#
14 lines
501 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.QH
|
|
{
|
|
public interface IQH_CUSTOMER : IRepository<QH_CUSTOMER>
|
|
{
|
|
List<QH_CUSTOMER> GetList(ref Pager pager, string userAccount, string name, string resId, DateTime? starttime, DateTime? endtime);
|
|
List<QH_CUSTOMER> GetList(ref Pager pager, decimal InnerUserId, string userAccount, string name, string resId, DateTime? starttime, DateTime? endtime);
|
|
}
|
|
}
|