using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using CY.Model.Inquiry; namespace CY.IDAL.Inquiry { /// /// 便签询价操作接口 /// public interface INoteFastCostDAL : ICommonDAL { /// /// 获取便签快速询价价格表列表 /// /// /// /// IList GetModelList(Guid inquiryId); /// /// 获取便签快速询价价格 /// /// /// /// /// /// /// decimal GetNoteFastPaperPrice(string paperName, int paperSizeId, string printColor, int printCount, Guid inquiryId); /// /// 保存便签快速询价 /// /// /// /// bool SaveModelList(IList list, InquiryCondition inquiryCondition); } }