26 lines
902 B
C#
26 lines
902 B
C#
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_CUSTOMER
|
|
{
|
|
/// <summary>
|
|
/// 注册用户
|
|
/// </summary>
|
|
/// <param name="CNumber">电话号码</param>
|
|
/// <param name="ResId">客户ID</param>
|
|
/// <param name="CustomerFrom">来源ID</param>
|
|
/// <returns></returns>
|
|
int ResgisterCustomer(string CNumber, string ResId, string CustomerFrom, string customerDetailXml = null, string umid = "");
|
|
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.RES_CUSTOMER model);
|
|
|
|
int CrossDBResgisterCustomer(string CNumber, string ResId, string CustomerFrom, string customerDetailXml = null);
|
|
|
|
void res_customerdetial_log(string ip, string resid, decimal inneruserid, decimal eid);
|
|
|
|
void HandlerSalerAddCustomer(string resId, decimal userId);
|
|
|
|
int InitPhone();
|
|
}
|
|
} |