16 lines
447 B
C#
16 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Core.Domain.Impl
|
|
{
|
|
public interface IImportanceItemDomain : IScopedDependency
|
|
{
|
|
Task<List<CustomerBehaviorLogDto>> GetCustomerBehaviorLog(SearchCustomerBehaviorLogDto dto);
|
|
|
|
Task<List<CustomerBehaviorStatisticsDto>> GetCustomerBehaviorStatistics(SearchCustomerBehaviorLogDto dto);
|
|
}
|
|
}
|