using Crm.Core.Domain.Dto.CRM; using Crm.Core.Domain.Dto.Customer; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Domain.Impl { public interface ICustomerDomain : IScopedDependency { Task> GetSalesLeadList(string encyptDto); Task BestCustomerCreate(BestCustomerDto dto); Task> GetWwHhuserEids(List eids, int deptid); } }