using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.Model; namespace CY.IDAL.Inquiry { public interface IReduceWorkCountSetDAL { /// /// 获取厂商优惠印刷次数设置 /// /// /// /// Inquiry_ReduceWorkCountSet GetModel(Guid firmId, Guid customerId); /// /// 保存厂商优惠印刷次数设置 /// /// /// /// /// bool SaveModel(Inquiry_ReduceWorkCountSet model); } }