Table of Contents

Class ProductionStatistics

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

Production statistics for some period of time.

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

Constructors

ProductionStatistics()

public ProductionStatistics()

Properties

UnitsDefectiveCount

Gets or sets the number of unique units for which defects were added during the given period.

[DataMember]
public int UnitsDefectiveCount { get; set; }

Property Value

int

UnitsInspectedCount

Gets or sets the number of unique units that were scanned anywhere on the line during the given period.

[DataMember]
public int UnitsInspectedCount { get; set; }

Property Value

int

UnitsProducedCount

Gets or sets the number of unique units transitioned into the "produced" state during the given period.

[DataMember]
public int UnitsProducedCount { get; set; }

Property Value

int