Table of Contents

Class ProductionSchedule

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

A production schedule.

[DataContract(IsReference = true)]
public class ProductionSchedule
Inheritance
ProductionSchedule
Inherited Members

Constructors

ProductionSchedule(int, string, DateTime)

Initializes a new instance of the ProductionSchedule class.

public ProductionSchedule(int productionScheduleId, string name, DateTime dateTimeUploaded)

Parameters

productionScheduleId int

The unique identifier for this production schedule.

name string

The production schedule name.

dateTimeUploaded DateTime

The date/time that the production schedule was uploaded, in UTC.

Exceptions

ArgumentNullException

name is null.

Properties

DateTimeUploaded

Gets or sets the date/time that the production schedule was uploaded, in UTC.

[DataMember]
public DateTime DateTimeUploaded { get; }

Property Value

DateTime

Name

Gets or sets the production schedule name.

[DataMember]
public string Name { get; }

Property Value

string

ProductionScheduleId

Gets the unique identifier for this production schedule.

[DataMember]
public int ProductionScheduleId { get; }

Property Value

int