using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 印刷顾问-数据库操作接口 /// public interface IEC_PrintingConsultancyDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据会员编号分页查询 /// /// /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, string MemberId, string MemberName, string PcType); /// /// 根据编号查询单个信息 /// /// 编号 /// EC_PrintingConsultancy SelectModelByKeyId(int? KeyId); } }