12 lines
374 B
C#
12 lines
374 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_FAVORITECUSTOMER_HIS : IRepository<CSVR_FAVORITECUSTOMER_HIS>
|
|
{
|
|
List<CSVR_FAVORITECUSTOMER_HIS_View> GetHisList(Pager pager, string groupId, decimal? userId, string subcomgroupId, string resId, int? deptlineid);
|
|
}
|
|
}
|