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 IEC_PrizeInfoDAL : ICommonDAL, IPaging, IGetAllModel { IEnumerable getAllPrizeInfo(Pagination pa, string PrizeName); EC_PrizeInfo getOnePrizeInfo(int? Keyid); /// /// 得到全部礼品信息-前台 /// /// IEnumerable getAllPrizeInfo(Pagination pa); } }