14 lines
372 B
C#
14 lines
372 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.DTO;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_SHAREDCUSTOMER : IRepository<RES_SHAREDCUSTOMER>
|
|
{
|
|
List<Res_SharedCustomer_View> GetList(ref Pager pager, QueryUserComboDto usercomboDto, int? type, string resId);
|
|
}
|
|
}
|