crm.core/code/Crm.Core.Domain/Impl/ICustomerDomain.cs

18 lines
504 B
C#

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<List<SalesLeadDto>> GetSalesLeadList(string encyptDto);
Task<bool> BestCustomerCreate(BestCustomerDto dto);
Task<List<WwHhuserEidDto>> GetWwHhuserEids(List<decimal> eids, int deptid);
}
}