Table of Contents

Class ProductionPeriod

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

A specification for a particular period of production.

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

Constructors

ProductionPeriod()

public ProductionPeriod()

Properties

EndDate

Gets or sets the end date.

[DataMember]
public DateTime? EndDate { get; set; }

Property Value

DateTime?

Remarks

This is only applicable when Period is set to Custom, in which case it is required.

EndShift

Gets or sets the end shift.

[DataMember]
public byte? EndShift { get; set; }

Property Value

byte?

Remarks

This is only applicable when Period is set to Custom, in which case it is required.

Period

Gets or sets the named period type.

[DataMember]
public NamedPeriod Period { get; set; }

Property Value

NamedPeriod

StartDate

Gets or sets the start date.

[DataMember]
public DateTime? StartDate { get; set; }

Property Value

DateTime?

Remarks

This is only applicable when Period is set to Custom, in which case it is required.

StartShift

Gets or sets the start shift.

[DataMember]
public byte? StartShift { get; set; }

Property Value

byte?

Remarks

This is only applicable when Period is set to Custom, in which case it is required.