Class LineStatus
Line status.
[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class LineStatus
- Inheritance
-
LineStatus
- Inherited Members
Constructors
LineStatus(DateTime, byte, ProductionStatistics)
Initializes a new instance of the LineStatus class.
public LineStatus(DateTime currentShiftDate, byte currentShiftNumber, ProductionStatistics currentShiftStatistics)
Parameters
currentShiftDateDateTimeThe current shift date.
currentShiftNumberbyteThe current shift number.
currentShiftStatisticsProductionStatisticsThe current shift statistics.
Exceptions
- ArgumentNullException
currentShiftStatisticsis null.
Properties
ActiveDefectAlarms
Gets the list of active defect alarms.
public IList<DefectAlarm> ActiveDefectAlarms { get; }
Property Value
CurrentShiftDate
Gets the current shift date.
[DataMember]
public DateTime CurrentShiftDate { get; }
Property Value
CurrentShiftNumber
Gets the current shift number.
[DataMember]
public byte CurrentShiftNumber { get; }
Property Value
CurrentShiftStatistics
Gets the current shift statistics.
[DataMember]
public ProductionStatistics CurrentShiftStatistics { get; }