using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
using System.Data;
namespace CY.IDAL
{
///
/// 资讯分类-数据库操作接口
///
public interface IInfo_AllianceDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号查询单个信息
///
/// 编号
///
Info_Alliance SelectModelByKeyId(int? KeyId);
///
/// 列表查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, string Type);
}
}