Table of Contents

Class QueryDefectCountsTreeResult

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

Result from the QueryDefectCountsTree API.

[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class QueryDefectCountsTreeResult
Inheritance
QueryDefectCountsTreeResult
Inherited Members

Constructors

QueryDefectCountsTreeResult(ProductionPeriod, ProductionStatistics)

Initializes a new instance of the QueryDefectCountsTreeResult class.

public QueryDefectCountsTreeResult(ProductionPeriod productionPeriod, ProductionStatistics productionStatistics)

Parameters

productionPeriod ProductionPeriod

The production period for which this data applies.

productionStatistics ProductionStatistics

The production statistics.

Exceptions

ArgumentNullException

productionPeriod is null.

ArgumentNullException

productionStatistics is null.

Properties

DefectCounts

Gets the list of top-level nodes for the tree of defects.

public IList<DefectCountsNode> DefectCounts { get; }

Property Value

IList<DefectCountsNode>

ProductionPeriod

Gets the production period for which this data applies.

[DataMember]
public ProductionPeriod ProductionPeriod { get; }

Property Value

ProductionPeriod

Remarks

For named periods, the actual date and shift values be set to reflect the effective values.

ProductionStatistics

Gets the production statistics.

[DataMember]
public ProductionStatistics ProductionStatistics { get; }

Property Value

ProductionStatistics