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
{
///
/// PVC卡询价业务逻辑类
///
public class PVCFastCostBLL
{
IPVCFastCostDAL _iPVCFastCostDAL = null;
public PVCFastCostBLL()
{
_iPVCFastCostDAL = Factory.GetDALByInterfaceName(DALInterface.IPVCFastCostDAL) as IPVCFastCostDAL;
}
///
/// 获取PVC卡快速设置
///
///
///
public IList GetModelList(Guid inquiryId)
{
return _iPVCFastCostDAL.GetModelList(inquiryId);
}
///
/// 获取PVC卡快速询价价格
///
///
public decimal GetPVCFastPaperPrice(int pvcTypeId, int printCount, Guid inquiryId)
{
return _iPVCFastCostDAL.GetPVCFastPaperPrice(pvcTypeId, printCount, inquiryId);
}
///
/// 保存PVC卡快速设置信息
///
///
///
///
public bool SaveModelList(IList list, InquiryCondition inquiryCondition)
{
return _iPVCFastCostDAL.SaveModelList(list, inquiryCondition);
}
}
}