using System; using WX.CRM.Common; namespace WX.CRM.IBLL.Csvr { public interface ICSVR_APPLYVIP { /// /// 添加 /// /// /// bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_APPLYVIP model); /// /// 数据的修改 /// /// /// bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_APPLYVIP model); /// /// 删除 /// /// /// bool Delete(ref ValidationErrors errors, decimal id); /// /// 修改状态 /// /// bool UpdateStatus(ref ValidationErrors errors, decimal pkid, decimal optionId, decimal status); bool AddBWList(ref ValidationErrors errors, string username, string TelNum, string type, DateTime dateFrom, DateTime dateTo, string memo, int level, string agentId); bool AddBCHVIP(ref ValidationErrors errors, string TelNum, DateTime dateFrom, DateTime dateTo, string OutNumber); } }