using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 代理申请表-数据库操作接口
///
public interface IEC_ProxyApplicationDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 分页查询
///
///
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, string MemberName, string Status);
///
/// 根据编号获得信息
///
/// 编号
///
EC_ProxyApplication GetModelByKeyid(int? Keyid);
///
/// 根据会员编号判断是否存在申请中的记录
///
///
///
bool IsAlreadyApplication(Guid MemberId);
///
/// 处理代理申请
///
///
///
///
bool Handle(EC_ProxyApplication m_EC_ProxyApplication, EC_ProxyMember m_EC_ProxyMember);
}
}