using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using CY.IDAL.Inquiry;
|
using AbstractFactory;
|
using CY.Model;
|
using CY.Model.Inquiry;
|
|
namespace CY.BLL.Inquiry
|
{
|
/// <summary>
|
/// 无线胶装业务逻辑
|
/// </summary>
|
public class WirelessGlueBindCostBLL
|
{
|
IWirelessGlueBindCostDAL _iWirelessGlueBindCostDAL = null;
|
|
public WirelessGlueBindCostBLL()
|
{
|
_iWirelessGlueBindCostDAL = Factory.GetDALByInterfaceName(DALInterface.IWirelessGlueBindCostDAL) as IWirelessGlueBindCostDAL;
|
}
|
|
/// <summary>
|
/// 获取无线胶装价格列表
|
/// </summary>
|
/// <param name="firmId"></param>
|
/// <param name="customerId"></param>
|
/// <returns></returns>
|
public IList<Inquiry_WirelessGlueBindCost> GetModelList(Guid inquiryId, int printingTyId)
|
{
|
return _iWirelessGlueBindCostDAL.GetModelList(inquiryId, printingTyId);
|
}
|
|
/// <summary>
|
/// 保存无线胶装价格列表
|
/// </summary>
|
/// <param name="list"></param>
|
/// <param name="firmId"></param>
|
/// <param name="customerId"></param>
|
/// <returns></returns>
|
public bool SaveModelList(IList<Inquiry_WirelessGlueBindCost> list, InquiryCondition inquiryCondition, int printingTyId)
|
{
|
return _iWirelessGlueBindCostDAL.SaveModelList(list, inquiryCondition, printingTyId);
|
}
|
}
|
}
|