using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 会员配置表-数据库操作接口
///
public interface IEC_MemberDictionaryDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 分页查询
///
///
///
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid MemberId, string ParType, string ParName);
///
/// 根据编号获得信息
///
/// 编号
///
EC_MemberDictionary GetModelByKeyid(int? Keyid);
///
/// 根据会员编号和类型获取列表
///
///
///
///
IEnumerable SelectListByMemberIdAndParType(Guid MemberId, string ParType);
///
/// 批量删除
///
///
///
///
bool DelAllModel(string keyids, Guid Memberid);
}
}