using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///厂商申请客户转换-数据库操作接口
///
public interface IOA_CustomerApplyDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 分页查询
///
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid MemberId);
///
/// 根据编号获得信息
///
/// 编号
///
OA_CustomerApply GetModelByKeyid(int? Keyid);
///
/// 根据客户编号判断申请是否正常
///
///
///
int IsAlreadyApplication(Guid CustomId);
///
/// 回复客户转换申请
///
///
///
///
///
///
bool UpdateModel(int? Keyid, Guid CustomId, Guid MemberId, string Status);
}
}