using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 管路拓展泵性能曲线
///
public class PipeLineExPumpFeatCurveLogicDto : PipeLineLogicDto
{
///
///
///
public PipeLineExPumpFeatCurveLogicDto() { }
///
///
///
public PipeLineExPumpFeatCurveLogicDto
(
Model.PipeLine rhs,
Model.Product pump,
List property_group_list = null,
Model.PumpCurveExMapping feat_curve = null
) : base(rhs)
{
if (pump != null)
{
this.Pump = new PumpExFeatCurveLogicDto(pump, property_group_list, feat_curve);
}
}
///
///
///
public PumpExFeatCurveLogicDto Pump { get; set; }
}
}