using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Res { public interface IRES_CUSTOMERDETAIL : IRepository { 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 dic); void SetMobileBelongToArea(string belongToMobile, string resId); } }