40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using System;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_APPLYVIP
|
|
{
|
|
/// <summary>
|
|
/// 添加
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_APPLYVIP model);
|
|
|
|
/// <summary>
|
|
/// 数据的修改
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_APPLYVIP model);
|
|
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
bool Delete(ref ValidationErrors errors, decimal id);
|
|
/// <summary>
|
|
/// 修改状态
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
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);
|
|
|
|
}
|
|
}
|