19 lines
654 B
C#
19 lines
654 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_CUSTOMERDETAIL : IRepository<RES_CUSTOMERDETAIL>
|
|
{
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.RES_CUSTOMER model);
|
|
|
|
bool UpdateStatus(ref ValidationErrors errors, RES_CUSTOMERDETAIL detail);
|
|
bool UpdateZJL(ref ValidationErrors errors, RES_CUSTOMERDETAIL detail);
|
|
bool UpdateVisitStatus(RES_CUSTOMERDETAIL detail);
|
|
|
|
bool UpdateCategoryDic(Dictionary<string, string> dic);
|
|
void SetMobileBelongToArea(string belongToMobile, string resId);
|
|
}
|
|
}
|