17 lines
401 B
C#
17 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.DTO;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_DealCustomer
|
|
{
|
|
IList<DealCustomerItem> GetDealCustomerList(DealCustomerDto dto, Pager pager);
|
|
DealCustomerStat GetDealCustomerStat(DealCustomerDto dto);
|
|
}
|
|
}
|