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