namespace HStation.Dto
{
///
/// 图表关联
///
public class PhartDiagramRelationExtensionsDto : Model.PhartDiagramRelation
{
///
///
///
public PhartDiagramRelationExtensionsDto() { }
///
///
///
public PhartDiagramRelationExtensionsDto(Model.PhartDiagramRelation rhs) : base(rhs)
{
}
///
///
///
public PhartDiagramRelationExtensionsDto(Model.PhartDiagramRelation relation, Yw.Model.PhartDiagram diagram, List graphList) : base(relation)
{
if (diagram != null)
{
this.Diagram = new PhartDiagramExGraphListDto(diagram, graphList);
}
}
///
/// 图表
///
public PhartDiagramExGraphListDto Diagram { get; set; }
}
}