using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 会员升级申请表-数据库操作接口
///
public interface IEC_UpgradeRecordDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 分页查询
///
///
///
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid MemberId, string MemberName, int? Status);
///
/// 根据编号获得信息
///
/// 编号
///
EC_UpgradeRecord GetModelByKeyid(int? Keyid);
///
/// 根据会员编号判断是否存在申请中的记录
///
///
///
bool IsAlreadyApplication(Guid MemberId);
///
/// 会员升级批准
///
///
///
///
///
///
///
///
bool UpdateModel(EC_UpgradeRecord m_EC_UpgradeRecord, EC_MemberBasic m_EC_MemberBasic, EC_FirmInfo m_EC_FirmInfo, EC_ShopInfo m_EC_ShopInfo, OA_Commodity m_OA_Commodity_Paper, OA_Commodity m_OA_Commodity_Sheet, Integrity_IntegrityCard m_Integrity_IntegrityCard_Seller);
}
}