using WX.CRM.Common; namespace WX.CRM.IBLL.Res { public interface IRES_CUSTOMER { /// /// 注册用户 /// /// 电话号码 /// 客户ID /// 来源ID /// 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(); } }