using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
using CY.Infrastructure.Query;
namespace CY.IDAL
{
///
/// 推广系统软文推广-数据库操作接口
///
public interface IPromotion_ArticleInfoDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 获取全部软文推广
///
///
///
IEnumerable SelectModelPage(Pagination pa);
///
/// 获取单个软文推广
///
///
///
Model.Promotion_ArticleInfo SelectSingleModel(string Keyid);
}
}